Questions tagged [navigationcontroller]

A Controller in a MVC (Model View Controller) pattern provides the execution flow of the application. NavigationController is about this flow.

A Controller in a MVC (Model View Controller) pattern provides the execution flow of the application. NagigationController is about this flow in a technology that can apply the MVC pattern.

507 questions
-1
votes
4 answers

NSTimer Does not Stop with Navigation Controller

I am New in iOS, In my Project ,i am using NSTimer with Navigation Controller. I used two Classes in my project, Class 1 is ViewController and 2nd Class is PlayTheme. ViewController and PlayTheme Classes are connected with segue. In PlayTheme Class…
-1
votes
2 answers

Add Cell in the Table View Controller

In my application, there's a Navigation View(Embed In), a Table View Controller, and a View Controller. And in the ViewController.h, there are... @property (strong, nonatomic) IBOutlet UILabel *timeDisplay; @property (strong, nonatomic) IBOutlet…
홍승욱
  • 137
  • 2
  • 2
  • 8
-1
votes
1 answer

while pop a viewController, the left to right animation of View disappear

iOS 7, while pop a viewController, the left-to-right animation of View's contents disappear. but the title-change animation of NavigationBar still exists. I use this code to pop: [self.navigationController popViewControllerAnimated:YES]; some…
-1
votes
1 answer

iOS: Sublassing navigationController and pushing view generates warning

for some reason i am subclassing navigatioController to overwrite the pushViewController-method: -(void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated { NSLog(@"Pushing %@ to NavigationController",…
-3
votes
1 answer

How to use Navigation Controller on a view after user logs into the app?

I have a login view that uses Google Sign In. I have a navigation controller root set as the login view. When the user is logged in I want the navigation controller view to be set on the main page after the user is logged in. I tried making the main…
Connor
  • 13
  • 2
-3
votes
1 answer

self.navigationController? is nil when pushing from a objective-c viewController to a Swift ViewController

I'm trying to show the ToolBar of the navigationcontroller after pushing from a Objective C Class to a Swift Class by using this code, but the toolbar is not shown: self.navigationController?.setToolbarHidden(false, animated: false) Then I did a…
fisher
  • 1,286
  • 16
  • 29
-3
votes
1 answer

How to select ViewController?

The app starts on ViewContoller I push TutoViewContoller On some action, I pop TutoViewContoller I would like to call a method of ViewContoller just after popping TutoViewController. How can I do that ?
Cherif
  • 5,223
  • 8
  • 33
  • 54
-4
votes
3 answers

Issue in navigation

Hi every i have made an application and i run in simulator and iphone its works fine and i alnalize it and remove memory leakages. But today i ran the app on simulator when i am going to second view it display the view fine but when i came back to…
dark
  • 447
  • 1
  • 9
  • 21
-4
votes
2 answers

How to make a css bottom bar like on www.wtoclan.com

How do you make a bar like this?
Will
  • 1
  • 1
  • 1
-5
votes
1 answer

Unable to pushViewController with animation

1) I am not using any storyboards, and in the appDelegate file I'm setting the window's rootViewController as a tabBarController. 2) This tabBarController has 5 childs, those childs are navigationControllers with ViewControllers as roots. 2) Each of…
-5
votes
2 answers

Need help understanding UIViewController and UIWindow initialization

I was wondering if anyone could explain the following block of code because I don't really understand it. self.viewController = [[RootViewController alloc] initWithNibName:@"RootViewController" bundle:nil]; self.navigationController = [[…
12345
  • 1
  • 3
-7
votes
1 answer

iOS - Large title hides the top of my body

I've some problems with my navigation bar. Actually, it's a large title and it covers the top of my ViewController. I think a video will help you to understand the problem : https://vimeo.com/284493905
1 2 3
33
34