UIView is an iOS class which is used to display all user interface elements. All UI elements are either subclasses of UIView or are contained within a UIView.

learn more… | top users | synonyms

0
votes
0answers
2 views

Using XLCycleScrollView (Preload all views)

Currently I am using the class XLCycleScrollView found here... XLCycleScrollView At the moment, created 7 views the user is able to scroll through. I noticed that when looking at the example code for ...
0
votes
1answer
6 views

Rotation's effect on background image

I would like the background image of a view to change every time there's rotation. The image changes, yet when the rotation is horizontal, it cuts it off as if it were a portrait image. Here's what I ...
0
votes
0answers
11 views

Accessibility: Voice Over doesn't read anything in a custom nib automatically in xcode

I'm trying to do my app more accessible. I have created a custom UIView that is added to the UIViewController using this code: emergenteTiempos *emer = [emergenteTiempos shared:self.view]; [self.view ...
0
votes
1answer
12 views

cell.selectedBackgroundView covering up UIViews in a cell

I have a table. Within each cell of a table, I created a simple bar graph (which is just 2 UIViews with background filled). I have set cell.selectedBackgroundView to an image. When the cell is ...
0
votes
2answers
34 views

AddSubView on UITabBarController

I try to add UIView on UIViewController: AppDelegate *md = (AppDelegate*)[[UIApplication sharedApplication] delegate]; UIView *view = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 150, 44)]; [view ...
0
votes
0answers
17 views

Detecting the animation status in layoutSubviews method

I am customizing a UISearchBar to configure the margin and padding of its subViews like searchTextField, cancelButton. So I extended - (void)layoutSubviews method and adjust the margin and padding ...
0
votes
2answers
24 views

Resize background color/image base on new UIView's size?

How to make the view's background color change base on the size of view? I can re-size the view but seem the background color not change, it's fixed. color = [view backgroundColor]; [view ...
0
votes
1answer
26 views

UIView animateWithDuration:delay:options:animate:completion not delaying

I've seen a few questions related to this here at SO, but none of them seem to quite answer this: the delay part of UIView animateWithDuration:delay:options:animate:completion: won't delay. Here is ...
0
votes
0answers
11 views

Custom Modal Dragging

Here's the thing, I want to make a custom animation on the Modal, my plan is to make it like the Notification Centre, where you can drag the view with your finger and this follows your finger until ...
0
votes
1answer
35 views

Present a view with animation

Instead of doing self.view = view; like I am currently I want to present this view with animation. It is not an entire view controller but just a view, I am just replacing the current view with this ...
0
votes
0answers
8 views

How to zoom the uiview using orthographicprojection in ios?

I downloaded the project from https://github.com/antonholmquist/rend-ios. This project i tried to zoom the REGLView using orthographicprojection in pinchgesturerecognizer method its not working. My ...
0
votes
2answers
8 views

Add UITextFieldDelegate in cocos2d?

There are a lot of similar questions and answers, but they don't solve the main problem: how to properly add any text field in cocos2d with its workable delegate. For example if I create UITextfield ...
0
votes
2answers
47 views

How to load UIView from UIViewcontroller?

I have created a view and now I want to load that view from another viewcontroller without allocating the view. Is it possible or not. please clarify me. I am doing like following 1)Added UIView in ...
0
votes
2answers
37 views

UILabel Animations and Gestures

I am trying to achieve an effect in an application I am writing and maybe you can help. The view hierarchy is reasonably complicated at this point so for simplicity let’s just say I have a UILabel ...
0
votes
2answers
49 views

How to add a UIView over the Keyboard - iOS

I have been trying to display a toast message on iOS. What I did was when any notification comes, just I took the navigation controller view and added a subview for my toast message and displayed. ...
0
votes
1answer
38 views

Program crashing after adding subview from NSMutableArray

Right now I have a UIView with two subviews on it. I am trying to add another subview to one of those views, from a custom-made Card class. The problem is that the subview is coming from an ...
0
votes
0answers
11 views

Animate intrinsicContentSize changes

I have a UIView subclass that draws a circle whose radius changes (with nice bouncy animations). The view is deciding the size of the circle. I want this UIView subclass to change its frame size to ...
0
votes
0answers
12 views

Add animatable property to UIView

I've got an view which shows an scrollable temperature scale. There I used a property contentOffset to save the translation. (I know I should have used a UIScrollView but now I've got more control ...
0
votes
2answers
56 views

Trying to find the name of this “slidable UIView”?

Anyone know what the control is called to achieve the functionality shown here in the iOS Stocks app? I've been searching Google for things like 'Slidable UIView' but can't find anything!
1
vote
2answers
67 views

Static View For Every View Controller in iOS

I am creating view controller with a view. The view is named as timerView and it contains a timerLabel. Label is being updated by NSTimer after every second. Its working fine. But what I want to do ...
0
votes
1answer
18 views

What is the best way to use layers and partial rendering in iOS for speed

I'm working on a graphing application which I wrote using Core Graphics. I have a buffer which accumulates data, and I render it on the screen. It's super slow and I want to avoid going to openGL if ...
0
votes
2answers
21 views

button of a dynamically created view does not respond

I need your help. I am trying to build a game. When a hint button is pressed a new view is created programmatically with the code below: In my gameController.m //connect the Hint button ...
0
votes
0answers
6 views

Refresh UIView data

I have a custom UIView called CustomViewC that I need to refresh the data that it's displaying some times. For instance I may init the view to show "Hello" then at a later stage I want the view to ...
2
votes
0answers
139 views

Changing Frame Programmatically iOS 7? [closed]

So I have an app that is in the App Store and I you type in some UITextFields but some of the text fields were covered by the keyboard so I programmatically moved them up. Now I am working with the ...
-2
votes
0answers
39 views

create a custom view on top of my current view iOS [closed]

I am facing some difficulties. I do not have that experience and in all of my apps so far I was working with storyboards. I am now trying to create a game, and in a tutorial I follow every view is ...
0
votes
0answers
34 views

Main UIView is changing sizes after adding a container view

I have added a container view to my main view if someone pushes a certain button, then if they push the button again it removes the container view. The issue is my screen size seems to change when ...
0
votes
1answer
16 views

How to not to rotate a certain UIView allowing UIViewController's rotation

Does anyone know fix(not to rotate) a certain UIView with allowing rotation of UIViewController? I want to implement a interface like camera app UI. A view showing camera's view does not rotate but ...
2
votes
1answer
89 views

Vertical Parallax Scrolling Of UIView in iOS

I'm trying to add a vertical parallax scrolling effect between several views that are all the size of the screen. This wasn't too complicated when done through buttons, however I want it to be ...
1
vote
1answer
26 views

How to force UIView (mapView) to take up the entire screen

To set a UIView to take up the entire screen, is this correct? self.mapView.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height); Or should I be using the ...
-5
votes
0answers
22 views

When i intregrate iAds in iPhone App Apps slow down and disturb the ui? [closed]

When i integrate the iAds after iAds load then textfield's typing slow down and also popups and alerts showing on up to down and also picker view showing from right? I see this issue first time.it is ...
0
votes
0answers
38 views

Autolayout in UIView where is safe to ask computed layout values?

I've got this issue. I'm using a collection view as a subview of the main view of a UIViewController. The collection view is pinned to the superview size, thus it has 4 constraints for lead,trail, top ...
0
votes
0answers
3 views

Having trouble with UIScrollView horizontal 'snap' not working

My Horizontal scrollview isn't snapping, meaning stopping at each view. Any Help would be appreciated. (FYI the Views are views within a scrollview in a xib, set X is set to 0,320,640,960,1280 for ...
0
votes
1answer
21 views

UIView contents image

I want get texture or image from UIVIew like screenshot. But without create CGContext, and draw UIView on this context. If this view display on screen, i think it contains this texture somewhere ...
-1
votes
0answers
87 views

how to add one view to another view in iOS?

I want to make kids Shape Puzzle game. In which I have to drag one image and place that image to another view. like this https://play.google.com/store/apps/details?id=zok.android.shapes&hl=en I ...
0
votes
2answers
72 views

how to draw a rect in UIImage with this shadow effect?

I want to draw a rect in UIImage to highlight the area selected.I want the rect effect is like this: But what i draw is like this: And my drawing code is as follows: - (UIImage ...
1
vote
2answers
35 views

initialise view from NIB

I am trying to initialise a view from a NIB file onto my view controller on Storyboard. Here is what I did: drag a view controller onto storyboard, placed a UIView obj as a placeholder view and ...
0
votes
1answer
31 views

Using AutoLayout, how do I keep a UILabel in the same place when the navigation bar disappears?

I have a view controller with a UILabel in it that prints some words when a button is tapped. When the button is tapped, the navigation bar is set to hidden. So I tried taking the UILabel and giving ...
0
votes
0answers
21 views

UIPicker Moves To Bottom of View

I have something weird going on in my app that is causing me some issues. I am creating a screen where there are a few different options to change a label. The issue I am having is that a UIPicker ...
0
votes
1answer
15 views

Adding CorePlot BarGraphs to subview

Currently, I am using Coreplot's graphical framework to implement bar graphs. I pulled the tutorial projects from http://www.raywenderlich.com/13271/how-to-draw-graphs-with-core-plot-part-2 . I ...
0
votes
0answers
24 views

UIScrollView with dynamic number of views and Auto Layout iOS6

i am struggling with an UIScrollView in iOS6 using auto layout. What i am trying to do is setting up a scrollview holding a number of subviews (UIViews). Those subviews are created dynamically in a ...
1
vote
1answer
30 views

Glow around the sides of a rectangle

I am trying to create glow just around the sides of the rectangle. The rest of the rectangle should be filled clear color. I create a UIView with CGRect of certain size and then - ...
0
votes
2answers
42 views

Can I create a totally transparent UIView that receives touches?

I want to create a totally transparent UIView overlay (and it has subviews) to receives touches. I could set the alpha to a low value (like 0.02) to get an approximate effect. But I wonder is it ...
1
vote
1answer
32 views

How to correctly set background for retina?

May be the question is elementary, but I have a bug with setBackgroundColor. I have the UIView which contain UITableView. UITableView is clearColored. I'm trying to set background on UIView: ...
0
votes
0answers
41 views

Using renderInContext: for masks created by cgpaths

I recently found out that the renderinContext: method ignores any layer masks. I am trying to capture a video of my app's screen, in which I animate the path of a masked CALayer. To record the ...
0
votes
3answers
33 views

How to correctly set alpha of UIView? [iOS]

I have UIView with lots of subviews (UILabel, UITextView, etc.). If a set alpha 0.6 to main view all the subviews takes this alpha. How to set alpha separately of main view?
0
votes
1answer
22 views

UIImageView and Auto Layout in Code

I'm trying to use programmatic visual constraints to display a label and a button next to one another. However, the UIImageView used as the button's background is making the intrinsic size of the ...
1
vote
1answer
37 views

How to put Google Map in a custom UIView

I know this question has already been asked before, but none of the answers were really clear to me and I can't find good tutorial on Internet... So, I want to put Google maps in a different UIView ...
1
vote
2answers
38 views

How to setup a subclass of UIScrollView to respond to touch events?

I recently had a problem regarding not being able to register touches events (touchesMoved, etc) from within a UIScrollView. After talking with lots of people and reading tons of posts, it turns out ...
0
votes
0answers
8 views

Is there a tool to export a live UIView to a XIB?

Sometimes a developer avoids working with XIBs and Storyboards in favor of manually assembling a view hierarchy in code because doing it in code seems less cumbersome than becoming proficient with ...
1
vote
0answers
42 views

removeFromSuperview not releasing the view while using ARC

I am adding a subview to my finalview which is used to change prefrences on the app. I add it like this from my finalview getPrefrencesViewController = [[GetPrefrencesViewController alloc] init]; ...

1 2 3 4 5 150