The UIViewController class manages the views in iOS apps and mediates the interaction between an app's views, its underlying model objects, and the overall workflow.
Is it possible in iOS 6 to know when a UIStoryboardSegue has finished its transition? Like when i add a UIStoryboardSegue …
ios ios6 uiviewcontroller segue uistoryboardsegueHow to dismiss 2 view controllers in Swift iOS? Below is my code. @IBAction func backButtonTapped(sender: AnyObject) { self.presentingViewController .presentingViewController .…
ios swift uiviewcontroller dismissviewcontrollerAre there any guidelines for using these methods in the right manner? In particular, I would like to know what …
objective-c ios uiviewcontroller viewwillappear viewdidappearTrying to present a modal view controller with the following code MapViewController *mapView = [[MapViewController alloc] initWithNibName:@"MapViewController" bundle:nil]; mapView.…
ios objective-c xcode uiviewcontroller xibI have 3 "pages" (page 0, page 1, page 2) in a UIScrollView that are snapped to by finger swipes. There is a UIPageControl …
iphone xcode uiviewcontroller uiscrollview uipagecontrolWhile investigating a memory leak I discovered a problem related to the technique of calling setRootViewController: inside a transition animation …
ios cocoa-touch uiviewcontroller core-animationIs there a way in Xcode when using the Storyboard in the Interface Builder to disable the status bar completely, …
ios xcode uiviewcontroller xcode-storyboardI'm trying to get my CAGradientLayers, that i'm using to create nice gradient backgrounds, to resize nicely on rotation and …
iphone ios objective-c uiviewcontroller cagradientlayerI would like to modally add a view controller with a transparent background, so the parent view controller beneath can …
iphone objective-c uiviewcontroller transparencyI push a ViewController which contains not too many views, UIScrollView which contains 10 views inside, I have a singleton ViewController …
uiviewcontroller uinavigationcontroller pushviewcontroller