Tagged Questions

The UIViewController class provides the fundamental view-management model for iPhone applications. The basic view controller class supports the presentation of an associated view, support for managing modal views, and support for rotating views in response to device orientation changes.

learn more… | top users | synonyms

27
votes
6answers
10k views

Popover with embedded navigation controller doesn't respect size on back nav

I have a UIPopoverController hosting a UINavigationController, which contains a small hierarchy of view controllers. I followed the docs and for each view controller, I set the view's popover-context ...
25
votes
3answers
32k views

View Controllers: How to switch between views programmatically?

In short: I want to have two fullscreen views, where I can switch between view A and view B. I know I could just use an Tab Bar Controller, but I dont want to. I want to see how this is done by hand, ...
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)
23
votes
4answers
13k views

When is UIViewController viewDidUnload called?

When does UIViewController's viewDidUnload automatically get called? Yes I know, when the view unloads. But when does that happen automatically? How can I do it manually? Thanks.
22
votes
6answers
17k views

Custom animation for pushing a UIViewController

I want to show a custom animation when pushing a view controller: I would like to achieve something like an "expand" animation, that means the new view expands from a given rectangle, lets say ...
20
votes
10answers
16k 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?
19
votes
3answers
182 views

hide second viewcontroller and navigate to third viewcontroller

I am in ViewControllerA and other ViewControllerB is also loaded in the viewcontroller's stack.viewControllerB has camera screen also. From ViewControllerA I'm calling ViewControllerB by this below ...
19
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 ...
19
votes
15answers
11k views

iPhone crashing when presenting modal view controller

I'm trying to display a modal view straight after another view has been presented modally (the second is a loading view that appears). - (void)viewDidAppear:(BOOL)animated { [super ...
16
votes
1answer
9k views

Easiest way to support multiple orientations? How do I load a custom NIB when the application is in Landscape?

I have an application in which I would like to support multiple orientations. I have two .xib files that I want to use, myViewController.xib and myViewControllerLandscape.xib. myViewController.xib ...
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
4answers
1k views

Animate change of view controllers without using navigation controller stack, subviews or modal controllers?

Navigation controllers have view controller stacks to manage, and limited animation transitions. Adding a view controller as a sub-view to an existing view controller requires passing events to the ...
14
votes
3answers
9k views

Add toolbar to UITableViewController

What is the simplest way to add UIToolBar to UITableViewController? I'm depending on edit functionality, so I can't change UITableViewController to UIViewController easily.
12
votes
6answers
1k views

iOS: different addSubview behavior between iOS 4.3 and 5.0

while coding in iOS 4.3 before, I found while add a view controller's view to another view with [superview addSubView:controller.view], the controller instance will not receive the ...
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
13answers
11k views

IPhone - After dismissing Modal View Controller - gap is left at top of page

When starting the app, if the user doesn't have login information stored, I want to display a modal view controller to force the entry of this information. I found through trial and error, that this ...
11
votes
3answers
2k views

How to constrain autorotation to a single orientation for some views, while allowing all orientations on others?

This question is about iOS device rotation and multiple controlled views in a UINavigationController. Some views should be constrained to portrait orientation, and some should autorotate freely. If ...
11
votes
2answers
5k views

Are viewDidUnload and dealloc always called when tearing down a UIViewController?

I'd like to know whether or not both viewDidUnload and dealloc are always called in succession in the tear-down process. Is it possible that dealloc could be called on my view controller without ...
10
votes
2answers
344 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
1answer
1k views

how to dismiss a modal view controller presented as “Form Sheet” when a touch occur outside the form sheet?

I have a View Controller (with a UIWebView) i present in Form Sheet style. I have to put a "Done" button in the UIToolbar of the view in the View Controller to have it dismissed. But, since presenting ...
10
votes
3answers
3k views

iPhone Landscape FAQ and Solutions

There has been a lot of confusion and a set of corresponding set of questions here on SO how iPhone applications with proper handling for Landscape/Portrait mode autorotation can be implemented. It is ...
10
votes
1answer
23k views

Why doesn't initWithNibName work for my UIViewController subclass?

I have subclassed UIViewController into a new class, PageViewController (I'm writing a simple book app). I want to add a new view loaded from a nib file and am using the following code. It works. ...
10
votes
6answers
5k views

Checking if a UIViewController is about to get Popped from a navigation stack?

I need to know when my view controller is about to get popped from a nav stack so I can perform an action. I can't use -viewWillDisappear, because that gets called when the view controller is moved ...
9
votes
3answers
10k views

Passing Data between View Controllers

I'm new to IOS and Objective-C and the whole MVC paradigm and i'm stuck with the following. I have a View that acts as a data entry form and I want to give the user the option to select multiple ...
9
votes
2answers
15k views

iOS - Calling App Delegate method from ViewController

What I am trying to do is click a button (that was created in code) and have it call up a different view controller and have it run a function in the new view controller. I know it could be ...
9
votes
2answers
4k views

Retain/release pattern for UIPopoverController, UIActionSheet, and modal view controllers?

I'm somewhat unclear on the object ownership patterns required for the following instances. When my UIViewController presents a popover controller, an action sheet, or another view controller as ...
9
votes
1answer
5k views

Showing login view controller before main tab bar controller

I'm creating an iPad app with a tab bar controller that requires login. So on launch, I want to show a LoginViewController and if login is successful, then show the tab bar controller. This is how I ...
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
4k views

Why is this over-releasing? UINavigationController / UITableview

I'm pushing a view controller onto my navigation controller's stack from within my TableViewController's didSelectRowAtIndexPath method as so: MyViewController *myViewController = [[MyViewController ...
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
1answer
708 views

iOS: Is it possible to customize the “Open in…” menu when previewing a document?

I'm looking to leverage either UIDocumentInteractionController or QLPreviewController to preview both PDFs and images inside my application. I'm wondering if any of the following customizations are ...
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
1answer
3k views

Release in viewDidUnload and dealloc both?

I have been under the assumption for a while that viewDidUnload is always called when a controller is deallocated. Is this a correct assumption? I've just been exploring some odd things, and set a ...
7
votes
2answers
150 views

What would cause the iPhone home screen to be visible behind a modal flip transition?

On some occasions, not every time, when my app presents a modal view controller using presentModalViewController:animated: with modalTransitionStyle set to UIModalTransitionStyleFlipHorizontal the ...
7
votes
3answers
455 views

Can somebody explain the process of a UIViewController birth (which method follows which)?

There are many methods to override, like initWithNibname:, awakeFromNib, loadView, viewDidLoad, viewDidAppear:, and I just cannot decide in which order gets these method called. I just override one ...
7
votes
1answer
433 views

Using Custom View Controllers to manage different portions of the same view hierarchy

The View controller programming guide states this regarding view controller's usage: Each custom view controller object you create is responsible for managing all of the views in a single view ...
7
votes
2answers
274 views

How does Apple make its controllers contain other controllers?

The Apple documentation gives the following warning regarding using View Controllers to manage part of a screen. Note: You should not use view controllers to manage views that fill only a part ...
7
votes
3answers
5k views

Adding a UINavigationController as a subview of UIView

I'm trying to display a UILabel on top of a UINavigationController. The problem is that when I add the UILabel as a subview of UIWindow it will not automatically rotate since it is not a subview of ...
7
votes
4answers
10k views

iPhone: How to Pass Data Between Several Viewcontrollers in a Tabbar App

I have following problem: I have built a tabbar application with 4 tabs. I want to pass a object/variable from the first tab controller to the third one and initialize this controller with the ...
7
votes
2answers
9k views

How to get UIViewController of a UIView's superView in iPhone SDK?

I have a UIViewController in which i have a UITextView added from interface builder.Now i want to push a view when i click on hyperlink or phone number. I am able to detect that which url is clicked ...
7
votes
2answers
38k views

present and dismiss modal view controller

Can anyone give me the example code that I can use to first present a modal view controller, then dismiss it? This is what I have been trying: NSLog(@"%@", blue.modalViewController); [blue ...
7
votes
4answers
4k views

willRotateToInterfaceOrientation not being called

I'm returning YES in my view controller's shouldAutorotateToInterfaceOrientation function, and I can see using breakpoints that YES is being returned, however the willRotateToInterfaceOrientation ...
7
votes
4answers
5k views

How do I shared an object between UIViewControllers on iPhone?

My application is a tab bar application, with a separate view controller for each tab. I have an object in my first view controller (A) which contains all my stored application data (Please ignore ...
7
votes
4answers
988 views

UIViewController: detecting drill-down and drill-up

Is there a way for a UIViewController (inside a navigation stack) to detect whether it is appearing because a drill-down or a drill-up was performed? In viewWillAppear, the UINavigationController's ...
7
votes
3answers
262 views

How to choose what code to put in a View vs. a ViewController?

In Xcode, the Utility Application template makes a project with: MainView, MainViewController and FlipsideView, FlipsideViewController In my app, the two views correspond to the main UI and a ...
7
votes
5answers
10k views

Iphone UIButton not working in nested UIViews

This is so damn simple im sure! Im missing something and im exhausted from trying to fix it. hopefully someone can help. The Button in CharacterView.m works but the button nested down in ...
7
votes
3answers
8k views

iPhone how to create a full screen app?

I've been trying to create a full screen view. I plan on using core graphics for rendering. I am new to iPhone development so please forgive this basic question. Here's my setup code; - ...
6
votes
3answers
340 views

Back button not appearing on pushed UIViewController

I have a UITableViewController. When I click on a cell I want to push a new view. This works fine, but the new view doesn't have a back button. Why is this? TableViewCode: if([[NSUserDefaults ...
6
votes
1answer
192 views

How do I “connect” a table view to a view controller

Alright, I know this is a vague conceptual question, but I really need help here. Thanks in advance if you decide to take the time to read this. I would never even consider writing this much except ...
6
votes
2answers
2k views

didReceiveMemoryWarning, viewDidUnload and dealloc

I've looked through lots of posts, my books and Apple Developer and gleaned most of the understanding I need on use of these. I would be really grateful if some kind person could confirm that I've ...

1 2 3 4 5 59