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.
68
votes
5answers
120k 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 = ...
42
votes
1answer
15k views
iPhone Development - 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? (don't quote apple docs)
Thanks!!
34
votes
4answers
18k 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 ...
31
votes
6answers
7k 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 ...
26
votes
4answers
1k 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 ...
23
votes
3answers
4k 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)
22
votes
4answers
6k 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 ...
21
votes
1answer
11k 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 ...
20
votes
6answers
4k 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 ...
20
votes
4answers
8k 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, ...
20
votes
10answers
17k 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?
16
votes
2answers
11k 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 ...
15
votes
2answers
6k 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. ...
15
votes
2answers
13k 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. ...
14
votes
5answers
2k 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 ...
14
votes
4answers
2k views
I know I can't say myView.frame.origin.x = val - But why?
I know that I can't use that
myView.frame.origin.x = 25.0;
that I have to use instead
CGRect myFrame = myView.frame;
myFrame.origin.x = 25.0;
myView.frame = myFrame;
And I'm doing it all the ...
14
votes
1answer
5k 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 ...
14
votes
4answers
15k 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'.
13
votes
4answers
454 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 );
...
13
votes
1answer
3k views
Scaling MKMapView Annotations relative to the zoom level
The Problem
I'm trying to create a visual radius circle around a annonation, that remains at a fixed size in real terms. Eg. So If i set the radius to 100m, as you zoom out of the Map view the radius ...
13
votes
3answers
3k 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 ...
12
votes
1answer
380 views
EAGLView to UIImage color conversion problem
I have an EAGLView (taken from Apple's examples) which I can successfully convert to a UIImage using this code:
- (UIImage *)glToUIImage:(CGSize)size {
NSInteger backingWidth = size.width;
NSInteger ...
12
votes
1answer
2k 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 ...
12
votes
2answers
1k views
iPhone, reproduce the magnifier effect
I would like be able to create a movable magnifier (like the one you have when you copy and paste) in a custom view, for zooming a part of my view.
I have no idea on how to start, do you have any ...
12
votes
3answers
10k 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 ...
11
votes
2answers
2k views
How do I control the background color during the iPhone flip view animation transition?
I have some pretty standard flipping action going on:
[UIView beginAnimations:@"swapScreens" context:nil];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.view ...
11
votes
3answers
2k views
UIView “suck” animation
I'd like to use the UIView "sucking" transition (view is "sucked" into a point) referenced here:
http://iphonedevwiki.net/index.php/UIViewAnimationState#Using_suckEffect
The method above, however, ...
10
votes
2answers
348 views
Complete list of transitions you can do between views on iPhone/ iPad [closed]
Are there many other resources for doing creative transitions between views? I am familiar with the following, but I am wondering if there are any more out there. Links to tutorials, examples, source ...
10
votes
3answers
4k 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?
10
votes
3answers
484 views
SplitView detail view returns wrong view frame ?
I am using a splitView in iPad app. the detail view has 2 subView in it that draws themselves according to the etail view bounds.
the problem is that they always draw themselves in (1024, 768) even ...
10
votes
2answers
7k views
“Incorrect” frame / window size after re-orientation in iPhone or iPad
In my iPhone OS application I want (need) to watch for chances in the device orientation in order to rearrange certain portions of the screen. The approach I used was to use GRect frame = [UIScreen ...
10
votes
2answers
9k views
How does [UIView beginAnimations] work?
I was wondering how animations work in Cocoa Touch. For example:
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
view1.alpha = 1.0;
view2.frame.origin.x += 100;
...
9
votes
3answers
983 views
iOS Core Animation - Fold a Layer
Using Core Animation, I would like to fold a UIView (i.e. it's CALayer) on it's center. i.e. I would set the anchor point as (0.5,0.5) & fold the layer. This image that I created in Photoshop ...
9
votes
4answers
399 views
Placing and Moving Views on Rotation (UIView)
What's the "correct" way of exactly placing and moving views when an app rotates? That is, how can I have fine-grained control of the position, size, and reflow of my views when the UI rotates from ...
9
votes
1answer
2k views
How to update 2D iPhone game to be compatible w/ iPhone 4's retina display?
What are the necessary steps to update an existing OpenGL ES 1.1 based 2D iPhone game to be compatible w/ the iPhone 4's retina display? I'm still using the Texture2D class that came w/ Apple's ...
9
votes
3answers
13k 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] ...
9
votes
2answers
6k views
Animating removeFromSuperview
I'd like to animate the transition from a subview back to the super view.
I display the subview using:
[UIView beginAnimations:@"curlup" context:nil];
[UIView setAnimationDelegate:self];
[UIView ...
9
votes
4answers
13k 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 ...
9
votes
2answers
3k 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 ...
8
votes
3answers
4k 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 ...
8
votes
2answers
1k views
How to preserve image transparency when using colorWithPatternImage:
I have an image prepared with transparency, like this:
With two UIviews, I configure the background colors as so:
self.view.backgroundColor = [UIColor groupTableViewBackgroundColor];
...
8
votes
1answer
3k 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 ...
8
votes
5answers
5k views
Transition behavior using transitionFromView and transitionWithView
I am attempting to create a transition between two subviews (view1 and view2). When a button is pressed I want view1 (front) to flip and show view2 (back). I have tried both transitionFromView and ...
8
votes
4answers
1k views
UINavigationBar autoresizing
In my app, I got a UINavigationController. Unfortunately, when I rotate the device and the interface orientation changes, the UINavigationBar doesn't change its height. In other iPhone applications, ...
8
votes
1answer
960 views
Does releasing a UIView release all its subviews?
If I have a UIView, and I add an allocated subview into it (in this case the UIImageView), when I release the UIView, will UIImageView also be released?
I set up my view and a subview like this:
...
8
votes
5answers
2k views
UIViewController prevent view from unloading
When my iPhone app receives a Memory warning the views of UIViewControllers that are not currently visible get unloaded. In one particular controller unloading the view and the outlets is rather ...
8
votes
3answers
2k views
Black Corners On Grouped UITableViewCells Only After Navigation Pops
I am no graphics expert but I somehow managed to make some good looking custom grouped UITableViewCells by setting the background view to a backgroundView with some CG code. In all SDK's up to 3.1.3 ...
8
votes
5answers
5k 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));
...
8
votes
2answers
8k views
IPhone - UIView addSubview Gap at top
I have a view that is loaded in the MainWindow.xib. It is just a view with a uiimageview in it that shows a image on the entire screen ( 320 X 480 ). When the app loads I display this view and then ...
8
votes
2answers
4k views
How can I get the pinstripe background to show?
I'd like to use the pinstripe background that shows up in the Settings app and many other iPhone apps behind table views. Is is already included in some graphics library? How can I make it show up in ...