The UINavigationController class implements a specialized iOS view controller that manages the navigation of hierarchical content.
0
votes
2answers
24 views
Title not setting with json. Objective C
I want to set the title of my navigation bar with a json title.
I tried:
[self setTitle:[self.defineJsonDataforSurveyQuestion objectForKey:@"SurveyName"]];
[self.navigationController ...
0
votes
1answer
26 views
iOS UINavigation Controller basics and custom back button
I make my first "serious" iOS app, and have some troubles with the whole UINavigation concept, but all in order. I look answers for my questions but don't find what I want, so here it is.
I want to ...
0
votes
0answers
44 views
Objects becoming nil after navigating back
Well, I m passing data between two Views.
On my first view i just overview data from CD. In my seconde View I can change these data. If I change someting and save it, I return to my first View. So ...
0
votes
1answer
22 views
Changing text on automatically created button in navigation bar
I've been a lurker for some time on Stackoverflow, and here is my first iOS post.
I am implementing a UINavigationController programmatically and am using it for the default back buttons. The text ...
0
votes
1answer
41 views
iOS Programmatically changing views within AppDelegate
I'm attempting to change a view when specific push notifications come through, I've had minor success. (Using parse with push notifications, catering for when the App is open and closed).
My ...
0
votes
1answer
60 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
2answers
23 views
Pdf viewer using StoryBoard
I have a problem with navigationController. I'm trying to make a simple PDF app using UIPageViewController but I can't get it working.
I tried to use the project UIPageViewController-PDF ...
-1
votes
5answers
53 views
iPhone : How to remove right button from navigation bar in a view controller?
I have made a custom navigation bar, same for all the views by implementing the method below -:
- (void)navigationController:(UINavigationController *)navigationController ...
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
47 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
3answers
48 views
How to remove space from UINavigationbar between Button
How to remove this space image here. Here is my code :
UIButton *postButton = [UIButton buttonWithType:UIButtonTypeCustom];
[postButton setImage:[UIImage imageNamed:@"post_btn.png"] ...
0
votes
1answer
67 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
32 views
How to create pushViewNavigationController through IB?
I am a beginner of objective-c. I am trying to create pushviewcontroller through IB. When I click the barbutton on navigation controller it is not pushing the view.
I wrote log statements in the ...
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 ...
-1
votes
1answer
13 views
Cannot hide editButtonItem in moreNavigationController for the FIRST time
I am using this code (self is my TabBarController)
self.moreNavigationController.navigationBar.topItem.rightBarButtonItem = nil;
the editButtonItem is getting hidden if I double click on the more ...
0
votes
0answers
30 views
Adding UINavigationController to root UIViewController using addChildViewController
What I want to do is have a root view controller that manages the base view of my application and then add a UINavigationViewController (with its own view controller stack) to that view controller ...
0
votes
1answer
19 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
viewcontroller with a uinvaigationcontroller when pop up does not show the navbar
I'm using storyboards with this. On the storyboard I have a "mainpage" uiviewcontroller that has a button which when tap will call another uiviewcontroller (choosewinner) to pop up. But this ...
0
votes
1answer
33 views
push DetailViewController when popping MasterViewcontroller
In my iPad master detail application, I have a master view controller with tableview in it an a detail view. When user clicks on a row, it pushes another master view and detail view, now when I click ...
0
votes
1answer
12 views
Set up view controllers like Find My Friends iPad app
I want to set up my view controllers like the Find My Friends iPad app. Based on what I've found so far, I believe that I need to:
Use a container view controller
Make the tab bar controller the ...
0
votes
1answer
18 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
0answers
14 views
ios JASidePanels make the UINavigationController the centerViewController
In my application I am using the JASidePanels libraries, everything is set and working using storyboards, but I would like to push from my center view to a detail view by clicking on a tableViewCell, ...
0
votes
1answer
43 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
25 views
Disabling simultaneous rightBarButton / tapGestureRecognizer touch
I have a viewController that makes its navigationBar and statusBar disappear / reappear when the user taps the screen (much like the photos app). I'm noticing when I push the rightBarButton "Done" on ...
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
33 views
Can't access detailViewController from UINavigationController
I'm trying to get a reference to my detailViewController in application didFinishLaunchingWithOptions: method. But here I am faced with a problem.
I have next Views structure is storyBoard (for ...
0
votes
1answer
20 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
14 views
iOS6 Orientation with NavigationController
I am developing an application that has several views and a root view controller. It's based on UINavigationController using pushViewController:
In didFinishLaunchingWithOptions:
BIDLoginController ...
0
votes
1answer
25 views
How to get the previous viewcontroller that pushed my current view
The home page of my app has UIButtons, btnIncome and btnExpense. Pressing on this buttons pushes IncomeVC and ExpenseVC respectevely,which are two UIViewControllers with UITabBar added via xib. The ...
2
votes
1answer
36 views
Mainting UIButton on UINavigationBar throughout app?
I'm try to set up a navigation-based app with a UIButton (to provide 'about' information) as the title on the navigation bar. I can easily establish the button as the title but can't figure out where ...
0
votes
1answer
70 views
Slide back in UINavigationController like in Facebook for iOS
I saw the Facebook app update for iOS (6.1.1) and it has a rely nice slide back function. For now I have a UISlideGestureRecognizer that when is called a do a [self.navigationController ...
1
vote
0answers
30 views
UIImagePickerController and Push Segue
I have a UIImagePickerController that is presented modally from a home screen. Now my understanding is that UIImagePickerController is a subclass of UINavigationController and acts as the root view ...
0
votes
4answers
40 views
Change title of navbar based on which tab is selected?
I have an iOS app where there is a navigation controller as the root controller but at one part there is a tab bar to select between views in one of the nav bars. It looks similar to the iTunes app ...
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;
...
-1
votes
1answer
48 views
DismissViewControllerAnimated not working with navigation
In my application i have used the following code to implement after dismissing the view i have pushed to new view,When i tried to implement the view is not dismissing instead it overlapping.Here my ...
-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
6 views
UInavigationController unable to hide button
I try to hide button that i created in the navigation bar .
i create it manually on the UIViewController , but when i try to hide it , it just doesn't hide it self .
this is the code i have :
// ...
0
votes
2answers
36 views
dismissViewControllerAnimated issue with navigation
This is my application code , which i used for selecting the image picker ,when image picks i want to dismiss the current view controller, Since its not dismissing from current view controller at the ...
0
votes
0answers
34 views
Presenting navigationcontroller modally causing transparent overlay?
I am using this control
https://github.com/mikefrederick/MFSideMenu to present my navigationbar modal. I am getting the modal navigation view presented please see the screenshot here. What I have ...
0
votes
1answer
13 views
Set width of UINavigationController loaded from storyboard
I'm using ECSlidingViewController for an iPad app, i'm trying to get a UINavigationController as the master page (menu) that will be revealed under the left side of the main UIViewController.
To do ...
1
vote
2answers
23 views
passing data to UIView before its loaded onto the navigation controller
I have a very complex situation (well for me) I am trying to resolve but thus far am having trouble with it.
I will outline the structure of the application now and then explain the problem I am ...
0
votes
1answer
34 views
Make custom back button's clickable area smaller in Navigation controller
I've created a custom back button with the code below, however the clickable area is very big and goes well beyond the icon itself. Does anyone know how to set the clickable area, or make it the same ...
0
votes
0answers
43 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 ...
1
vote
0answers
12 views
Add image to UINavigationBar titleView
I have an UINavigationBar in my .xib file and I want to set it's titleView to an image. How can I do this? I am working with iOS 6.
0
votes
2answers
63 views
UIScrollView Stop working after push view to UINavigationController
The scrollview in my main page stop working if I push something to the navigation controller and then pop back to the main page. It works normally if I reopen the application without pushing anything ...
0
votes
0answers
17 views
Get reference to current navigation controller within tabbarcontroller
I have a tabbarcontroller application which have 5 tabs, and so 5 different navigation controllers to run things on each tab.
The app works fine, no issues.
I have just got my head around how to ...
0
votes
0answers
13 views
Hide back button in MWPhotoBrowser navigationcontroller
I am using MWPhotoBrowser in my ARC project. Everything is working fine. I want to hide back button. In performLayout() function, I tried below code to hide back button but its not working.
...





