The UINavigationController class implements a specialized iOS view controller that manages the navigation of hierarchical content.

learn more… | top users | synonyms

0
votes
0answers
7 views

iOS: Navigation stack Re-Order/Re-Arrange Scene's at Runtime

I have a Navigation Controller with a UITableViewController that I'm allowing the user to re-order the cells. Let's say the User ends up setting the Cells as shown in RootViewController (Picture ...
0
votes
0answers
6 views

Change root view controller dynamically from storyboard?

I have an app which uses a navigation controller to record measurement data for the user. The first screen is reused multiple times depending on the user settings. They can choose to measure say their ...
-1
votes
0answers
16 views

Overriding navigationController

I overrode (UINavigationController *)navigationController to be able to unit-test it, but now views aren't pushed on my navigation controller anymore. Below is what my method is like - ...
0
votes
1answer
15 views

add navigation controller to viewcontroller which is the rootviewcontroller of the window

I want to add navigation controller to view controller which is the rootviewcontroller of the window. Two xib files main window.xib and view controller.xib files. - (BOOL)application:(UIApplication ...
0
votes
2answers
31 views

TabBarController and NavigationController

I am making an application but I'm still a beginner and I'm trying to get used to the RootViewController and how it should be set. At the beginning my application launches, I want there to be a View ...
1
vote
1answer
19 views

Managing a subview shown within several tabs in a tabbed app

I have a tabbed iOS 5 app where I need to keep showing a certain subview when some of the tabs are tapped and become displayed. In the following mockups I try to explain what I need: most of the tabs ...
0
votes
0answers
6 views

What is the correct way of resizing a modal navigation controller presented with UIModalPresentationFormSheet when showing a keyboard?

I'm presenting the navigation controller with this code (in the base class of the view controller being presented): ...
0
votes
0answers
7 views

Set Interface Orientation Programmatically in iOS 6 Not Working as expected

I am in a need of setting the interface from Portrait to landscape programmatically, but its not working as expected. I have tried returning '0' from '-(NSUInteger)supportedInterfaceOrientations' and ...
0
votes
1answer
32 views

ios source code for UINavigationController?

Is there an iOS source code that I can download to view how the codes work? I need to study UINavigationController to know how the UIViewController stack back and forth works and the view and memory ...
0
votes
1answer
30 views

Adding a UINavigation to a UITabBar application [duplicate]

I'm writing a UITabBar application and I want the views to have a UINavigation on one of the views. Normally I would set the rootViewController to a UINavigationn controller but the TabBarController ...
1
vote
2answers
33 views

Is it a good approach to override UInavigationController in iPad?

My client requested some modification cannot be done without overriding the UINavigationController, is it a good practice to do that or apple will refuse my app?
0
votes
1answer
30 views

Set Navigation View Controller title from prior View Controller depending on button pressed

Fairly new to iOS development. I have a ViewController embedded in a Navigation Controller. In this ViewController I have two buttons (buttonOne and buttonTwo) which when pressed push to another ...
0
votes
0answers
18 views

Reproduce the Photos app pinch animation

On the iPad, the Photos app has a custom animation whereby the full-screen image view transitions smoothly back to the thumbnail view as the user pinches out. The opacity of the full-screen image ...
0
votes
1answer
20 views

pushing UIViewController without Navigation Controller

I was using that method for pushing another UIViewController in if condition : initViewController *MW = [initViewController alloc]; MW = [self.storyboard ...
0
votes
2answers
16 views

Change the size of pushed viewcontroller

I'm presenting a ViewController which has UINavigationController. Is it possible to change the size of whole NavigationViewController just like when showing UINavigationViewController in UIPopOver and ...
0
votes
2answers
35 views

StoryBoard - UITabBarController + UINavigationController - Jumping from one navigation controller to the other one

I have the following storyboard setup I need to jump from the BodyMapViewController to MoleDetailsView controller (as shown in the image) when the user hit the save button I can use the modal view ...
0
votes
2answers
48 views

UINavigationController popToViewController issue

I am using UINavigationController to deal with controllers navigation In Normal Case RegistrationView -> LoginView -> HomeView From HomeView & any other next controllers there is one screen ...
-2
votes
2answers
54 views

Put a Back Button on Navigation Bar? [closed]

How do I use the back button on the navigation bar in my Storyboard? Any time I assign an action to the button, the navigation controller disappears.
0
votes
1answer
21 views

CATransition with UINavigationController: keyboard disappears

I'm doing a custom animation in UINavigationController that allows to hide the tabbar in the first view. It starts from a sort of text view with the virtual keyboard and displays a ...
0
votes
0answers
8 views

Can't back out of ABUnknownPersonViewController when adding person

I'm having an issue. ABUnknownPersonViewController is embedded in a navigation controller at the top view, however, I'm not using the navigation bar in my app. When pushing to the ABUnknownPersonView, ...
0
votes
2answers
22 views

UIView suddenly disappears

I have a native iOS app that creates a view hierarchy by pushing ViewControllers onto the root navigation controller. Occasionally I find that the app suddenly disappears. It doesn't appear to have ...
-3
votes
1answer
149 views

How to disable back swipe gesture in UINavigationController on iOS 7 [closed]

In iOS 7 Apple add new default navigation behavior. You can swipe from left border of the screen to go back on navigation stack. But in my app, this behavior conflict with my custom left menu. So, is ...
0
votes
3answers
52 views

Need assistance regarding passing data from child to parent in UINavigationcontroller

In UINavigationController this is child controller .h @protocol childProtocol <NSObject> -(void)childMethod:(NSArray*)params; @end @property (strong, nonatomic) ...
0
votes
0answers
10 views

Refreshing UITableView in UINavigation View

I have set up a UINavigation view which segue's to a detailed view controller successfully . The View is where the user will add and update a PLIST which again works fine. The issue I have however is ...
0
votes
0answers
10 views

iOS: ContainerView with ModalView and Two Children. Performing Segue

Below is the image of what I'm trying to accomplish. We have a containerView. The child view has a navigation controller. There are 2 children for the containerView. Child #1 and Child #2 Between ...
0
votes
0answers
25 views

How do I make the flip animation on a modal view on the iPad transparent in the background?

How do I make my flip animation transparent so the view behind it is shown through? Here's some of my code: EditInfoViewController *editController = [[EditInfoViewController alloc] ...
0
votes
0answers
8 views

Subclassing UINavigationViewController and also Custom View for [UINavigationViewController view]

I have subclassed the UINavigationController and successfully using it in my application, Now I want to grab all the touches on [UINavigationViewController view] and pass them conditionally to ...
0
votes
0answers
4 views

opening a UIView in modal invokes touchesEnded in the calling UIViewController

I'm having a UIViewController that is calling a UINavigationViewController that has a UITableViewController and it has a push segue to a UIViewController (in the stack there are 3 views: ...
1
vote
2answers
21 views

UINavigationController and UITabBarController Subclassing?

In my application I am using a subclass of the UINavigation controller and UITabBarController to override some of the orientation functions. Is it App Store safe to use a subclass, or could my app be ...
0
votes
0answers
19 views

UINavigationController dismissViewControllerAnimated

I have an app using a UINavigationController as a root, a UIViewController with tableView, which discloses another UIViewController with a UICollectionView in it. When the user taps on a ...
-1
votes
2answers
39 views

PresentViewController with Tabbar and Navigationbar iOS

I am presenting a view controller class using custom navigation bar as follow: CreateShiftRosterEventViewController *objDetailView = [[CreateShiftRosterEventViewController alloc] ...
0
votes
1answer
22 views

Prevent status bar hide when presenting modal viewcontroller ios6

I'm trying to present simple UIViewController modally by using segue. after view controller is presented status bar is getting hidden, how to prevent status bar getting hidden ? i have one solution, ...
0
votes
1answer
25 views

returning to a uiviewcontroller without navigationcontroller

my application has a UIViewController that isn't wrapped in a UINavigationController from it I call different UINavigationControllers each representing a state in a state machine. calling these ...
0
votes
0answers
31 views

Navigation between tableview as subviews of a main view

I've a Storyboard project where there is a main view that has as subview another viewcontroller (Home), which, at the push of a button, it is moved to the left for viewing another subview ...
0
votes
0answers
23 views

adding a Back Button on a root navigation view

My setting screen is a single UITableViewController contained in UINavigationController, I'm opening it from a UIMapView that is not contained in the same UINavigationController with this command: ...
0
votes
0answers
24 views

Issue drawing custom UINavigationBar back button

I am using Quartz 2D to draw a back arrow (like a less than sign - <) as the back button of the UINavigationController. This is working fine for the normal button, but it is not changing the image ...
0
votes
1answer
29 views

initWithFrame is given empty frame

I'm attempting to use a UINavigationController that utilizes a custom subclass of UINavigationBar. However, I'm running into a problem with initWithFrame. When initWithFrame is called, I print out the ...
-1
votes
2answers
29 views

set appdelegate' window rootviewcontroller

In Home ViewController based on user selection I will have to load selected viewcontroller. For this I am changing AppDelegate.window.rootViewController to the navigationcontroller inited with ...
0
votes
1answer
18 views

Why UINavigationController keep popping out the top controller

I have UITabBarController, one of the tab points to a UINavigationController. The UINavigationController rootViewController is of class BGProfileView which shows users' profile At viewDidAppear, I ...
0
votes
1answer
21 views

How do I add back a UINavigationItem once I've set it to nil?

I have a UIBarButton item set as the right button on a UINavigationBar. I also have a UISegmentedControl set as the titleView. These were both added using Interface Builder. Here is the code I am ...
0
votes
0answers
13 views

Navigation and Tab Bar combination

I have an app in which I have 4 sets of controllers accessable through a Tab Bar controller. Each of these sets contains a Map in a View controller and a Table View Controller. I segue between the ...
0
votes
3answers
26 views

UIScrollView common for different viewControllers

I had to have a tabBar with 9 tabs, so I added a Srollview(MHScrollViewController) with 9 buttons instead of tabBar. On click of each button, I add a viewController as subview to the Srollview. In ...
0
votes
1answer
28 views

Can't add NavigationController on TableView using UISplitView

I am having a little hard time here, forgive me if you think my problem is so easy for you. I am trying to create app using UISplitView. The 1st View on the left is a TableView and the other one on ...
0
votes
1answer
28 views

Two UInavigationcontrollers that merge

I have kind of an odd bug. I've got two navigation controllers in a tab bar controller. The twist is that nav controller #2 points to view controllers in nav controller #1 as follows: 1a -> 1b -> ...
0
votes
1answer
27 views

iOS: Load UIWebView automatically

I have two viewControllers. In my first viewController I prepare a web address and as soon as I hit a button the second view controller should open the address in a web view. I am not sure how to load ...
0
votes
1answer
22 views

WPF NavigationService.Navigate not showing up in Expression Blend

I am trying to create a WPF application but I cannot navigate to a custom xaml file on a button click event. I am importing the navigation service method but for some reason the ...
0
votes
0answers
14 views

View controller's UIView frame weird behaviour

I've encountered a problem that drove me crazy. I've solved it, but my understanding of the matter is just not enough. I've looked through documentation, but i guess i picked wrong topics, because ...
0
votes
1answer
35 views

View does not get pushed on button click - Iphone dev

I am trying to push a view from a button. The method gets called on tap but the view does not get pushed into the navigation controller. Below is the code for the button tap: - ...
1
vote
0answers
21 views

ChildViewController = 0 then crash after popToRootViewController

I'm encountering the strange crash with combination of popToRootViewController and NavigationControllerDelegate. There are 3 tableViewControllers created in Storyboard. RootViewController - ...
-2
votes
1answer
457 views

Uinavigation set tintcolor tested in ios7 not working? [closed]

Hello everyone I have an app which have a uinavigation and i have set the tint color to black like this self.navigationController.navigationBar.tintColor = [UIColor blackColor];. I have tested it in ...

1 2 3 4 5 95