In my application which is based on a tabbar view controller with many uinavigationviewcontrollers for each tabbar items, I want to present at some point (at application launch) with a call to presentModalViewController that contains a uinavigationcontroller as a root so the user can do a few things... when he or she is finished, the Don...
Hi,
I have an Navigation-based app where i navigate trough some viewcontroller's.
At this moment I have 2 viewcontrollers. In the second viewcontroller, i have a condition that if it's true i pop to the first viewcontroller with popToRooViewController. When I do this the app return's to the rootController but in debugger console appears ...
How would one implement a wizard style interface for the iPhone?
For instance I have a form that I would like to break down into 5
different pages or views instead of putting all the information to fill out
into one page or view.
This interface must have the ability to go prev or next in case they want
to change something on page 2...
The Apple UI design guide suggests that a UIPageControl is ideal for presenting the top view of a utility app.
Would a paging view that appears at the 2nd or 3rd level down inside the main UINavigationController view trigger a fail during the App review process?
In my App I have inserted a 3 page view at the second navigation level dow...
my view are fill in back of Navigationbar how can i make it continuous at the buttom of it.
here is my code
WebViewController *webViewController = [[WebViewController alloc] initWithNibName:@"WebController" bundle:nil];
[[self navigationController] pushViewController:webViewController animated:YES];
[webViewController release...
Hi,
How can I add a numeric badge to the rightBarButtonItem of a UINavigationController? I saw the same in some shopping cart applications.
thanks in advance,
...
I'm trying to create a modal view which pops up when the user presses a button. The modal view has a navigation bar with a map view as the main view. I'm having trouble setting this up in Interface Builder. When I set the view outlet for my File's Owner's view to the view inside the Navigation Controller, the only thing that show up is t...
Hey guys when I press the back button, what Delegate method is called?
Best Regards
Carlos Vargas
...
I've configured a NIB as follows:
...but when I display this NIB as a modal view controller, it appears on the simulator as:
I recall seeing this problem a long time ago on a project, but I can no longer remember what I did to fix it. Any idea what I've done wrong here?
Thanks very much.
...
I am new to iphone development. I am displaying an array of data in a table. Upon clicking the row, it navigates to the corresponding detail view. I want to display a title in the detail view corresponding to the row selected in the table.
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
...
Using a navigation based view hierarchy. I have a root view controller, and multiple view controllers that branch out from the same when a button is pressed. When a user presses the back button on the UINavigationBar, the current viewcontroller is popped and the display animates back to the rootviewcontroller.
The problem is, I want th...
Hi,
I have a TabBar application with several nibs, most with a NavBar. It works pretty well, except for the "views" that are inside the "More" section of the tabBar.
As expected, it will put a NavBar to return to the "More" list, as well as the NavBar i've placed in the nib.
I've tried to remove the view controllers from the moreNavig...
I am getting this error when I call my method dismissView. Here is the method stub:
-(IBAction)dismissView
{
RootViewController *rootController = [[RootViewController alloc] initWithNibName:@"RootViewController" bundle:nil];
[self.navigationController popToViewController:rootController animated:YES];
}
That should work, and I'...
Hi,
Im working off the seismic xml iphone example.
In that example there is simply the application delegate which has a rootViewController of type UITableViewController.
I wanted to modify it slightly so that I would have a navigationController and use its rootViewController as the table view. My root view controller class for my naviga...
The Situation:
I have a UIViewController that is governed by a navigation controller. I am able to set the title of the navigation bar covering the UIViewController by simply calling self.title = @"title". But, I want to be able to set the back button text of the navigation bar, too (for different languages n' such..)
The Problem:
I don...
I'm working on an iPhone app where I'm using a navigation controller (UINavigationController) to navigate through the various child views, and I would like to add a uiview to either the main window or the navigation controller, as a footer overlay that shows up on top of all the child views. I've tried this through interface builder, an...
Hello together,
my Question is quite simple.
I have an add-button. When I tap on it --> presentmodelviewController presents a UIViewController, which contains a simple Table with cells.
When I tap on a Cell, i want to display a new View using pushViewController, which automatically creates a "back Button".
At the top of it in this n...
Hi,
I guess I'm just really looking for some advice on how to approach my problem.
So far I have an application with a navigationcontroller that has a table view.
Every cell in the table has a text field and image and a disclosure button.
This is sort of my main menu option navigation screen.
When a user clicks a disclosure button I...
I would expect that after I push a view controller I then need to release my ownership of the view controller like I did below.
CustomViewController *nextViewController = [[CustomViewController alloc] initWithNibName:@"CustomView" bundle:nil];
[[self navigationController] pushViewController:nextViewController animated:YES];
[nextViewCo...
I have a navigation controller that displays viewcontroller A. There is a right button (labelled "B") that leads to viewcontroller B.
Now, when the user makes an important change in (the view managed by) viewcontroller B, viewcontroller B's usefulness has ended.
From then on, VC A should lead to a new VC, viewcontroller C. This is th...