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

142
votes
3answers
37k views

Cocoa: What's the Difference between the frame and the bounds?

UIView and its subclasses all have the properties frame and bounds. What's the difference? (Please don't quote the Apple docs, I've already read them and did not understand)
106
votes
7answers
166k views

iPhone UIView Animation Best Practice

What is considered best practice for animating view transitions on the iPhone? For example, the ViewTransitions sample project from apple uses code like: CATransition *applicationLoadViewIn = ...
98
votes
3answers
24k views

How to tell if UIViewController's view is visible

I have a tabbar application, with many views. Is there a way to know if a particular UIViewController is currently visible from within the UIViewController? (looking for a property)
58
votes
14answers
38k views

Get to UIViewController from UIView on iPhone?

Is there a built-in way to get from a UIView to its UIViewController? I know you can get from UIViewController to its UIView via [self view] but I was wondering if there is a reverse reference?
57
votes
2answers
12k views

Autoresizing masks programmatically Vs Interfact builder / xib / nib

I had some confusions, which I think I have resolved them now, but just wanted confirmation. I was in an (probably false) assumption that enabling the right margin indicator in xib is equivalent to ...
56
votes
2answers
26k views

iPhone - Get Position of UIView within entire UIWindow

The position of a UIView can obviously be determined by view.center or view.frame etc. but this only returns the position of the UIView in relation to it's immediate superview. I need to determine ...
53
votes
6answers
25k views

Rounded UIView using CALayers - only some corners - How?

In my application - there are four buttons named as follows. Top - left Bottom - left Top - right Bottom - right Above this buttons there is an image view / or we can use also UIView. Now, ...
53
votes
5answers
10k views

UIView animation vs CALayers on iPhone

I'm struggling with conceptualizing animations with a CALayer as opposed to UIView's own animation methods. Throw "Core Animation" into this and, well, maybe someone can articulate these concepts from ...
50
votes
2answers
28k views

UIViewController. viewDidLoad vs. viewWillAppear: What is the proper division of labor?

I have always been a bit unclear on the type of tasks that should be assigned to viewDidLoad vs. viewWillAppear: in a UIViewController subclass. For example, I am doing an app where I have a ...
47
votes
5answers
35k views

How to set iPhone UI View z index?

I want to move one view on top of another, how can I know the z index of the view, and how to move on to top? Thank you.
45
votes
3answers
35k views

What are block-based animation methods in iPhone OS 4.0?

I am trying to implement a game using the iPhone OS 4.0 (iOS4?) SDK. In the previous versions of the SDK, I've been using the [UIView beginAnimations:context:] and [UIView commitAnimations] to create ...
44
votes
4answers
37k views

How to add a touch event to a UIView?

How do I add a touch event to a UIView? I try: UIView *headerView = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, nextY)] autorelease]; [headerView addTarget:self ...
41
votes
3answers
26k views

iOS Programming: Frame, Bounds and Center

I would like to know how to use these properties in the right manner. As I Understand, frame can be used from the container of the view I am creating. It sets the view position relative to the ...
40
votes
5answers
32k views

UIView with rounded corners and drop shadow?

I've literally tried everything I could but none of them work for a custom UIView... I just wanted a blank white view with rounded corners and a light drop shadow (with no lighting effect). I can do ...
38
votes
3answers
12k views

Changing my CALayer's anchorPoint moves the view

I want to alter the anchorPoint, but keep the view in the same place. I've tried NSLog-ing self.layer.position and self.center and they both stay the same regardless of changes to the anchorPoint. Yet ...
33
votes
4answers
3k views

Custom Scrollbar for iPhone's UIView (Making Long Scrolls Not Suck)

In a post, Making Long Scrolls on the iPhone Not Suck, Aza Raskin describes an alternative scrollbar control that's better at getting around on very long pages: It's not important that the ...
30
votes
5answers
10k views

Do I have the right understanding of frames and bounds in UIKit?

Let me try to explain it. Please tell me if I am wrong. I am just 70% sure about it. Like I understand it, an UIView has a frame and an bounds rectangle. The job of the frame rectangle is to set the ...
28
votes
2answers
10k views

How to Convert UIView to PDF within iOS?

There are a lot of resources about how to display a PDF in an App's UIView. What I am working on now is to create a PDF from UIViews. For example, I have a UIView, with subviews like Textviews, ...
27
votes
7answers
24k views

Getting reference to the top-most view/window in iOS application

I'm creating a reusable framework for displaying notifications in an iOS application. I'd like the notification views to be added over the top of everything else in the application, sort of like a ...
27
votes
8answers
9k views

How can I use UIModalTransitionStylePartialCurl on a UIView that does NOT take up the whole screen?

In Apple's official Maps app for the iPhone, there is a small 'page curl' button in the lower-right corner. When you press it, the map itself peels back to reveal some options. I would like to ...
26
votes
5answers
12k views

UIView Infinite 360 degree rotation animation?

I'm trying to rotate a UIImageView 360 degrees, and have looked at several tutorials online. I could get none of them working, without the UIView either stopping, or jumping to a new position. How ...
26
votes
2answers
13k views

What is the relationship between UIView's setNeedsLayout, layoutIfNeeded and layoutSubviews?

Can anyone give a definitive explanation on the relationship between UIView's setNeedsLayout, layoutIfNeeded and layoutSubviews methods? And an example implementation where all three would be used. ...
25
votes
2answers
22k views

UIView vertical flip animation

I have an iOS UIView with UIViewAnimationTransitionFlipFromRight. I need it to flip vertically though. The page curl transition won't cut it. I assume this will require something custom. Any ideas?
24
votes
5answers
31k views

How do I use a UISegmentedControl to switch views?

I'm trying to figure out how to use the different states of a UISegmentedControl to switch views, similar to how Apple does it in the App Store when switiching between 'Top Paid' and 'Top Free'.
24
votes
2answers
13k views

Why masksToBounds = YES prevents CALayer shadow?

With the following snippet, I'm adding a drop shadow effect to one my UIView. Which works pretty well. But as soon as I set the view's masksToBounds property to YES. The drop shadow effect isn't ...
24
votes
3answers
18k views

Where to determine UIView size

Summary: How should the UIViewController know the size of its UIView instance when initializing that view? The dedicated initialization method for an UIView is the initWithFrame:(CGRect)frame method. ...
23
votes
3answers
29k views

Draw line in UIView

I need to draw a horizontal line in a UIView. What is the easiest way to do it. For example, I want to draw a black horizontal line at y-coord=200. I am NOT using Interface Builder.
23
votes
3answers
19k views

iphone how to check the type of an Object?

HI , i am new to iPhone. i want to check the type of an Object. how i will do that ... the scenerio is i m getting an object . if that object is of type A then do something .. if it is of type B then ...
23
votes
3answers
20k views

Difference between addSubview and insertSubview in UIView class

What is the difference between addSubview and insertSubView methods when a view is added programmatically? Thanks Ashwani
23
votes
1answer
13k views

Laying out & sizing of subviews in a UIViewController

I have an app with with a UITabController and each tab is a UINavigationController. The root of one of my UINavigationControllers is a UIViewController. Inside that view controller's view, I want to ...
22
votes
12answers
19k views

How can I loop through all subviews of a UIView, and their subviews and their subviews

How can I loop through all subviews of a UIView, and their subviews and their subviews... Thank you.
22
votes
6answers
15k views

How Do I Take a Screen Shot of a UIView?

I am wondering how my iPhone app can take a screen shot of a specific UIView as a UIImage. I tried this code but all I get is a blank image. UIGraphicsBeginImageContext(CGSizeMake(320,480)); ...
22
votes
1answer
5k views

Am I abusing UIViewController Subclassing?

In trying to figure out why viewWillAppear wasn't being called in my app I came across what may be a gross misunderstanding I hold about the intended use of UIViewController subclasses. According to ...
22
votes
2answers
6k views

How do I make an expand/contract transition between views on iOS?

I'm trying to make a transition animation in iOS where a view or view controller appears to expand to fill the whole screen, then contract back to its former position when done. I'm not sure what ...
21
votes
3answers
34k views

UIView with rounded rectangle and drop shadow: shadow appears above rectangle

I've got a uiview subclass where I'm trying to draw a rounded rectangle with a drop shadow. Though it draws both elements, I can see shadow through the rounded rectangle fill. I'm new to CG so I'm ...
21
votes
3answers
16k views

“Incorrect” frame / window size after re-orientation in iPhone

In my iPhone OS application I want (need) to watch for changes in the device orientation in order to rearrange certain portions of the screen. The approach I used was to use CGRect frame = [UIScreen ...
20
votes
4answers
25k views

What is the most robust way to force a UIView to redraw?

I have a UITableView with a list of items. Selecting an item pushes a viewController that then proceeds to do the following. from method viewDidLoad I fire off a URLRequest for data that is required ...
19
votes
3answers
28k views

addSubview animation

I have main UIView where I display different data. Then I put a button, which displays subview like this: - (IBAction) buttonClicked:(id)sender { UIView *newView = [[UIView alloc] ...
19
votes
6answers
35k views

How to add an UIViewController's view as subview

I have a ViewController which controls many subviews. When I click one of the buttons I initialize another viewcontroller and show it's view as the subview of this view. However the subview exceeds ...
19
votes
2answers
9k views

Having trouble getting UIView sizeToFit to do anything meaningful

When I add a subview to a UIView, or when I resize an existing subview, I would expect [view sizeToFit] and [view sizeThatFits] to reflect that change. However, my experience is that sizeToFit does ...
19
votes
3answers
6k views

Is it wise to “nest” UIViewControllers inside other UIViewControllers like you would UIViews?

I've got a fairly complex view, for me anyway, that has a few "trays" with custom interface items on them. They slide in and out of my root view. I'd like to nest (addSubview) the items inside the ...
18
votes
2answers
27k views

how to get access subview of UIView?

according to this code if i want to access imageView1 and imageView2 how can i access to it? please show me some example example cell.accessoryView.subviews ? UIImageView *imageView1 = ...
18
votes
2answers
3k views

What are the differences between a UIView and a CALayer?

Both have most of the same attributes, both support different kind of animations, both represent different data. What are the differences between a UIView and a CALayer?
18
votes
3answers
24k views

Make Background of UIView a Gradient Without Sub Classing

Is there a way to make the background of a UIView a gradient without subclassing it? I'd rather not use an image file to accomplish this either. It just seems obtuse to have to subclass UIView just to ...
18
votes
5answers
7k views

How to draw a “speech bubble” on an iPhone?

I'm trying to get a "speech bubble" effect similar to the one in Mac OS X when you right click on something in the dock. Here's what I have now: I need to get the "triangle" part of the lower ...
17
votes
3answers
8k views

Can UIView be copied?

Simply using this way UIView* view2 = [view1 copy]; //view1 existed This will cause simulator can not launch this app. Try retain, UIView* view2 = [view1 retain]; //view1 existed //modify view2 ...
17
votes
1answer
7k views

Make UIView pass through touch events?

Is there a way to make a UIView unresponsive AND pass through all touch events? Basically I just want to display graphics on top of other UIViews without blocking touch events.
17
votes
2answers
5k views

interaction beyond bounds of uiview

Is it possible for a UIButton (or any other control for that matter) to receive touch events when the UIButton's frame lies outside of it's parent's frame? Cause when I try this, my UIButton doesn't ...
17
votes
5answers
2k views

Rendering a UIView into a PDF as vectors on an iPad - Sometimes renders as bitmap, sometimes as vectors

I have an iPad app and I'm trying to generate a PDF from a UIView and it's almost working perfectly. The code is really simple as follows: UIGraphicsBeginPDFContextToFile( filename, bounds, nil ); ...
16
votes
2answers
11k views

UIView bottom border?

To a UIScrollView *toScrollView (which is the width of the screen), I want to add a gray bottom border (exactly like that of the to-field of the compose view of the iPhone's native Messages app). To ...

1 2 3 4 5 146