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
0
votes
2 answers

adding button to center of navigationcontroller

how to add button to center of navigationcontroller i have tried the below code UIButton *titleButton = [UIButtonbuttonWithType:UIButtonTypeRoundedRect]; [titleButton setFrame:CGRectMake(0, 0, 200, 35)]; self.navigationItem.titleView =…
0
votes
1 answer

iOS Not Pushing new view to NavigationController

I am working on an app that has a TabView controller, and in each tab is a TabeView, I have the TableView delegate and dataSource set to the main ViewController of the Object. I use the following code to try and push a new ViewController to the…
Matt Clark
  • 27,671
  • 19
  • 68
  • 123
0
votes
1 answer

screen rotation handling ios

App comprises 5 pages with mesh like hierarchy i.e each page can be reached from any page. Each page have portrait and landscape orientation support. So i am not able to handle the rotation when pushing and poping the view controllers from…
Sanjay
  • 83
  • 2
  • 11
0
votes
1 answer

how to navigate UItabbarviewcontroller

I Have a viewcontroller and tabbarviewcontroller. I du have the connection between viewcontroller and tabbarviewcontroller. Example: If I click on a picture inside a button of viewcontroller then the tabbarviewcontroller got opened. but I need to…
0
votes
1 answer

how the rises up and down button is made?

In the website below website's layout in the navigation,when hovered on the buttons it rises up and when the mouse is taken away it sinks down,how to do it either in css or other ways ? www.bigfishgames.com/
0
votes
1 answer

Why do I have click twice on a backButtonBarItem to go one view back? storyboard

Why do I have to click twice on a backButtonBarItem in a NavigationController to go one view back? I have a storyboard with the navigation controller, the tableViewController and a singleViewController. When I click on a row in the…
user1509034
  • 81
  • 1
  • 7
0
votes
2 answers

How do I render a bar similar to images.google.com?

How does images.google.com render its frames?? I have two servers, that have external web viewable content, and an internal search engine that only admins can use. The external content cannot be edited, it was created with some proprietary…
Schneems
  • 14,918
  • 9
  • 57
  • 84
0
votes
0 answers

jQuery Photo Navigator Functionality - Next and Previous Buttons

I've written some jQuery for a photo navigator, but it does not work when I press the "back" button. However, the back button DOES work when I click the "next" button first. To make matters worse, when I click the "back" button first, the "next"…
0
votes
1 answer

What is the best way of using a navigation class in C#

I got 2 pages ASP.NET (PageA.aspx and PageB.aspx). Each Page can display muliple records (about 7000). Instead of showing all 7000 records, I created my own navigation class that display the page number. (Page#1 = record 1 to 100; Page#2 = record…
Shadowizoo
  • 147
  • 1
  • 2
  • 17
0
votes
1 answer

embed navigation controller

I've just updated my Xcode from 4.2 to 4.3.3 and i keep coming across a problem is it possible to add a navigation controller in a single view application because when i try to embed one into the controller nothing happens. I would like to have two…
Picm
  • 89
  • 1
  • 3
  • 10
0
votes
2 answers

Navigation Controller

In my application, i have a navigation controller. I have added a back button to go to the login screen (UIViewController). How do i go back to the login screen from the navigation controller? This is the code for my back…
Amrita
  • 65
  • 1
  • 3
  • 9
0
votes
1 answer

Save data to a navigation controller for access all throughout the application

First i was wondering if this is a good idea, essentially i have user class and throughout the application i would have a current user and various views would want to access this users data. would it make sense to store this user in the navigation…
Kyle Fuller
  • 117
  • 2
  • 13
0
votes
1 answer

Storyboard a push seque from a View Controller to a Navigation Controller and retain the UITabBar to the segued Navigation Controller

I have the following Storyboard: I dont have enough rep points yet for images :( so I posted it here: http://www.bodharr.com/brionh/example.png I have the following code in my Journal ViewController Class: -(void)prepareForSegue:(UIStoryboardSegue…
0
votes
1 answer

why nothing happen when I reset the frame of a view controller in the navigation controller

assume view controller 1 is a view controller pushed in a navigation controller ,And I change the frame of the view controller 1 ,but it makes no difference. the view still full of the screen . did anyone knows why
VIRGIL
  • 555
  • 1
  • 4
  • 7
0
votes
1 answer

how to load xib view(UIViewController) from xib(UITableViewCell)

Here is what I already have; I have loaded a Custom cell from XIB file (UITableViewCell) This custom cell contains Button A and B Created a IBAction to handle Button A loaded above XIB file in MyTableView class (UIViewController) Now I want to…