2
votes
2answers
35 views

Add a button next to the back button

in iOS, is it possible to add a button next to the default back button (the one that is automatically created when you use the method pushViewController) I've tried to use the methods ...
0
votes
1answer
22 views

iOS - Keep background animation across view controllers

I'm using a basic UINavigationController design for the settings pages of an app. Each settings page is its own view controller (with xib), and each page has the same background image. I've since ...
-1
votes
2answers
20 views

pop to TableViewController from Detail Controller

I have a ViewController1 which can do a push segue into a ViewController2. This, in turn, can do a push segue into a ViewController3. I have a UIBarButtonItem in the ViewController1 that can do a push ...
0
votes
2answers
14 views

removeFromParentViewController doesnot update UINavigationbar

I want to remove all the viewcontrollers from UINavigationController. So I am using this code. for (UIViewController* controller in navigationController.viewControllers) { [controller ...
1
vote
3answers
31 views

Calling poptoviewcontroller function from a viewcontroller

Let me explain clearly. I have a tabbarcontoller in the viewcontroller which is the main view controller of the single view application project. I added a tabbarcontroller to the viewcontroller as ...
0
votes
0answers
38 views

UIPopoverController resizes popover and content-viewcontroller(uinavigationcontroller) at differently fast

So here's my problem. I want to present a popover from a navigationbarbutton(works fine). The contentviewcontroller of the popover is a UINavigationController with a UITableViewController as it's ...
0
votes
1answer
47 views

Pushing a view to a UINavigationController that's not in the same view hierarchy

I have two table views set out. One shows a list of items, say recipe names. The other shows recipe names with descriptions and images. The one with the more detailed view is part of a navigation ...
1
vote
2answers
41 views

Push a detail view from mapView with a Navigation Controller

I have a tabbed application with one of the tabs being a map view. The user places a pin in a location and in the annotation callout there is a disclosure button. I want this button to push to a ...
0
votes
0answers
35 views

UINavigationBar becomes transparent after switching views in uitabbar

In the (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions method, I initialized an instance of UINavigationController with ...
0
votes
1answer
27 views

iOS: Default Back button Being Presented Over Custom Left Nav Button

I'm getting this, once I push the view using: [self.navigationController pushViewController:viewController animated:YES]; I have the code to create the left navigation button in viewWillAppear. ...
0
votes
0answers
32 views

Blank view for UIViewController pushed with button click

I'm trying to push a UIViewController on to my navigation stack using the following: UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle: nil]; ...
0
votes
2answers
44 views

iOS - Popping UIViewController doesn't destroy its properties

When I pop a UIViewController instance off of my UINavigationController, I find that its properties remain (NSTimers keep timing, AVAudioPlayers keep playing, etc.). I'm wondering what's wrong with ...
1
vote
1answer
24 views

Presented UINavigationController tint color not changing

MyVC *vc = [[MyVC alloc] init]; vc.delegate = self; UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:vc]; [nc.navigationBar setTintColor:[UIColor ...
0
votes
1answer
28 views

Navigate to a view thats within a navigation controller

I have a Tab Bar Controller which contains 4 views. 3 views are very basic. Just a tableview with data (Call one of these views SimpleTableView). The 4th view points to a Navigation Controller with ...
0
votes
2answers
18 views

UINavigationBar with ProgressView

I want to implement the progress view as shown in below image link, anyone know how to implement such a progressview in UINavigationBar. https://dl.dropboxusercontent.com/u/80082840/y2NX8.png Thanks ...

15 30 50 per page