0
votes
1answer
54 views

Push View Controller from app delegate in tab bar

Im trying to display a ViewController, from my openURL function inside my AppDelegate class, but im not having any luck. Ive tried every solution i could find on the internet, im not sure what im ...
0
votes
1answer
42 views

Duplicate UIViewControllers on UINavigationController stack after application wakes

I just learnt IOS programming and am writing my first iPhone app. My app provides info on an MKMapView, the view controller of which is the root view controller of a UINavigationController. If the ...
2
votes
4answers
46 views

[self.navigationController pushViewController:ngView animated:YES]; not working

If i use NGViewController *ngView = [[NGViewController alloc]initWithNibName:Nil bundle:Nil]; [self presentViewController:ngView animated:NO completion:nil]; above code the controller will go to ...
0
votes
0answers
57 views

UINavigationBar back button crashing the app?

When I run my app in simulator everything is fine, but when I run in device it is crashing. Reason is I am pushing one xib from my storyboard and it's working well but when I press the back button it ...
0
votes
0answers
23 views

Adding UISegmentedControl to a UINavigationController's toolBar

Trying to add a UISegmentedControl into a UINavigationController's toolbar -(void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; self.navigationController.toolbarHidden = ...
0
votes
1answer
10 views

PopToViewController not updating UINavigationBar

I am trying to pop the view controller stack twice, right now I have got this UIViewController* controller = nil; for (UIViewController* c in self.navigationController.viewControllers) { if ...
0
votes
1answer
13 views

Play sound with back button storyboard. Objective C

In Xcode's Storyboard mode. When you use a navigation controller the back button automatically appears. Normally to play my sound I would call my task from a selector or action. How can I play this ...
0
votes
3answers
56 views

Can't get rid of top navigation bar

I'm working on an iPhone app with an all-custom GUI. I had placeholder UINavigation elements before but have since added my own buttons and set up all the segues programmatically. Now I am ready to ...
0
votes
1answer
18 views

How to add UIView to UINavigationController stack

I have a UIView that I add as a subview to the UIViewControllers in my UINavigationController's stack, which is just a side menu, like in the Facebook iOS app. I need to add the UIView to the ...
0
votes
1answer
17 views

Passing an NSManagedObjectContext to a tableview when its embedded in navigation controller

I'm creating an application with a few TableViews and i have the first screen which is a normal view, im creating in the AppDelegate a NSManagedObjectContext and I was passing it to other views using ...
0
votes
1answer
42 views

Right To Left Push animation results in corrupted navigation bar

I'm subclassing my UINavigationController to perform a push from right to left (not normal behavior) with UIRTLNavigationController.m I've added at the bottom of this question and get these warnings: ...
0
votes
1answer
27 views

Strange Bug in iOS 6 UINavigationController

I have found a strange bug in ios. When I use UINavigationController and push other controllers, the titleView shifted to the right so much as how many controllers was pushed It's looks like this: ...
0
votes
1answer
19 views

presentModalViewController causes sigabrt inside UINavigationController in IOS 5.1 [duplicate]

Now, at the moment my application consists of a UINavigationController, which then passes (via a button) to a normal UIViewController, which then uses presentModalViewController to load another ...
0
votes
1answer
33 views

UINavigationController and UIToolBar not working in iOS 6

I am working on iPad app in which click event of UINavigationController and UIToolBar is working fine in iOS 5 but, It is not working in iOS 6. My code: self.window.rootViewController=navCon; ...
-2
votes
1answer
35 views

How to handle users pressing back button too quickly after pushing a viewController?

Usually after the viewController is pushed, I want to do certain things. In add phone feature, for example, I would open edit business and set the focus to the phone field. If after viewController is ...
0
votes
0answers
42 views

JASidePanel Swipe doesn't work after push new controller on navigation stack

I use JaSidePanel to achieve effect like in Facebook App. But I have some problem with it. (1) is subclass of JASidePanelController, Navigation Controller is added as center panel. Everything works ...
0
votes
1answer
70 views

How to use a UIImagePickerController with UINavigationController

I've browsed the different similar questions here but couldn't find anything useful for my problem. What I'm struggling with is quite simple but I can't figure it out. I'm using Xcode 4.6.2 and ...
0
votes
1answer
37 views

How to share the ViewController class in TabBar with NavigationController?

Since I am a newbie in iPhone development, I need some advice. My app has two tabs which first tab to show tables of items that has lat/long and url. When I select an item in the tables, then show ...
1
vote
1answer
48 views

How to call some code if users press back button

In UINavigationController? For example, say I want to make sure that the UINavigationController is not animating when user press the back button.
1
vote
2answers
75 views

how to display various view controllers (each having its respective navigation controller) using storyboard ID

I'm working on my first app. Here's what I want to accomplish: There will be a menu with several different options. For simplicity, assume this is comprised of UIButtons with IBAction outlets and the ...
0
votes
2answers
31 views

Resetting the rootViewController on a NavigationController

I am using the PKRevealController that gives the side menu functionality to an application. I Have UIbuttons in the side menu and they trigger a view to be pushed on the navigation stack. However, ...
0
votes
1answer
69 views

Attempt to present modal VC on VC whose view is not in the window hierarchy

I have a storyboard that looks like this: This is how it works: the InitialSlidingViewController instantiates the Navigation VC as the topViewController as follows in its .m file: ...
0
votes
1answer
33 views

controlling display coordinates of view item added to toolbar

I want to have precise control over the custom view I add to my UINavigationController toolbar. More specifically.. i want to display a UILable ontop of the items in my toolbar. I have a toolbarItems ...
0
votes
0answers
43 views

Gmail iOS app make a turn over with the navigation bar

i would like to know if there are any frameworks for iOS to make a turn navbar like the Gmail App. It appears when an email is marked! THANKS! Look like this pictures:
0
votes
2answers
39 views

iPhone- How to get the main view (1st view) every time when we switching form one tab to another tab

In my iPhone app, I have used tabbarcontroller in that i have 4 tabs for four different items In each tab i have different views navigate transaction in those. my requirement is, when i switch form ...
1
vote
2answers
39 views

How to push a viewController before dismissing modal view controller with Storyboards?

While trying out storyboards for one of my projects I came across something for which I don't have a good solution; I have a navigation-based application which shows a UITableViewController. The ...
0
votes
2answers
43 views

pushViewController not working when animated:NO

I'm not sure what exactly broke in my app, but when I now try to change to a view controller, it won't work when animated:NO. When animated:YES, it works but displays the error: Unbalanced calls to ...
0
votes
2answers
53 views

popViewController, dealloc and removeObserver

I'm having a problem of the right place to remove observer from NSNotificationCenter // DetailOfSomethingViewController @implementation DetailOfSomethingViewController - (void)viewDidLoad { ...
0
votes
1answer
79 views

Navigation bar image stays after back button is pressed

I'm using a navigation controller with a menu. In this menu , the navigation controller is called to push other view controllers. I've set the color of the navigation bar in the menu with this code ...
0
votes
1answer
23 views

Navigation Based app : refreshing UIElements when controller is no more the current controller

My app use a custom navigation controller. When I push UIVIewController up on the navigation stack I have to load data over the network. I use : ...
0
votes
3answers
70 views

Prevent some view controller in a navigation controller from rotating

I have a navigation controller which displays two view controllers at once. They are layered and the front most controller can be dragged down to reveal the controller below. My app delegate is ...
0
votes
1answer
77 views

Delay in loading a HTML string into a UIWebView

I have two view controllers inside a navigation controller. The 1st view controller has a menu with a button. Pressing this button moves to the 2nd view controller and loads a html string into a ...
0
votes
1answer
18 views

How to get supernavigationcontroller

I have a navigationcontroller with a subnavigationcontroller as you can see in the picture. now my question here is how can I get the supernavigationcontroller of the navigationcontroller? when you ...
0
votes
1answer
32 views

I have view controllers in a navigation controller hierarchy, but only want the navigation bar on the first view controller - how do I do this?

I have a main view controller that lists a bunch of items, and when they tap on one of the items it segues them to the next view. However, in the next view, I don't want the navigation bar to be ...
9
votes
6answers
361 views
+200

Hid navigation bar, but when I transition to the previous view (popped) it shows the old back button temporarily. Why?

I have view controllers in a navigation controller (root: RootViewController, second: ReadingViewController), but in the second view controller I want to disable the navigation bar for a UIToolBar (as ...
0
votes
1answer
30 views

Had UIViewController embedded in navigation controller, but removed navigation controller for a manual UINavigationBar, but it errors out now

What exactly am I doing wrong? I have a storyboard with a UITableViewController embedded in a navigation controller, which has buttons in the bar connection to methods. I disconnected the methods and ...
0
votes
2answers
47 views

Buttons added to UINavigationController don't show up until after navigating to next page

I apologize in advance because I'm a complete beginner when it comes to Objective-C and iOS development, however I am having an issue that is really puzzling me. I have this code in a view which I'd ...
0
votes
1answer
41 views

UINavigationController not pushing correctly

I am trying to navigate some view controller programatically. I have already add the UINavigationControllerDelegate in the header file...But the view didnt push out when I click the button..Can anyone ...
0
votes
1answer
62 views

How to save/restore view state in iOS?

I'm using the ECSlidingViewController to create a slide out menu (like Facebook). I have this storyboard: As you can see, I have a navigation controller. I have a major problem though, that even ...
0
votes
2answers
38 views

Remove UINavigationBar from view

I've embedded several VC's in a UINavigationController. I do not want to show the navigation bar. I read that this method should remove it, but I cannot figure out who or what to call it on. ...
-1
votes
2answers
73 views

Pop view controller off stack without a navigation bar shown? [closed]

I've hidden the navigation bar so I can have a custom UIToolBar up there, but when I set the action property for the toolbar item to a method that pops it, it won't work, and I think it may be because ...
0
votes
1answer
37 views

need to popviewcontroller but keep the current view hidden

I'm trying the below code to hide the current view and pop to the previous viewcontroller's view but all i get with this code is a black screen on the view.. can't do anything on that... relationship ...
0
votes
1answer
40 views

Adding a view between TabBarController & NavigationController

I have a tab bar controller with each of its view controllers a navigation controller. I want to block some of the views within one of the navs (AlertView style) with a black transparent view, which ...
-1
votes
1answer
38 views

presenting ViewController Programmatically in Storyboard

i'm trying to present viewcontroller programmatically in storyboard, i'm using the below mentioned code but it's not working, doesn't give me any response... - (void)buttonPressed { NSLog(@"called"); ...
0
votes
1answer
44 views

Navigating to main view of Navigation Controller

I have a list of views that are in a navigation controller. I have my main page, with my start button, and other button. Upon clicking the start button, my app loads the second page with more buttons, ...
0
votes
2answers
51 views

UINavigation button change

I have 3 view controllers, 2 of them with some data that i display in the third controller.. I want to change the third controller navigation button according to from which controller i read the ...
0
votes
3answers
70 views

Set UINavigationBar background image in ViewController

I am able to set the background for my navbar to a custom image in the app delegate didFinishLaunchingWithOptions method with this code: UIImage *navBarImage; navBarImage = [UIImage ...
0
votes
0answers
44 views

How do I prevent a UINavigationBar from animating when I push and pop UIViewControllers?

I have a custom UINavigationBar set in a UINavigationController. I would like to prevent the NavigationBar from animating when new viewcontrollers are pushed and popped from the NavigationController. ...
0
votes
1answer
111 views

setBackButtonBackgroundImage with weird appearance

using this in AppDelegate.m for my custom NavBar: UIImage *NavigationPortraitBackground = [[UIImage imageNamed:@"gradient_main"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0)]; ...
1
vote
2answers
50 views

push another view from detail View

I have a big problem: on method didSelectRowAtIndexPath I always get null to self.navigationController.I have a project based on SplitViewController, and I want to push another view when a row are ...

1 2 3 4 5 27