Hi,
I am having a problem with creating a navigation controller after on the other side of the application :) ... I mean after clicking this small info button and flipping on the other side ...
I'm getting this error:Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[UIViewController _loadViewFrom...
I have a menu screen that implements UINavigationController and on top of that screen, using presentModalViewController, i place another screen that I wish to have another IUNavigationController. I have tried to implement another navigation controller to handle the new screen but I either get a navbar 1/8th the way down the screen and it...
The root question is "how many UIViewControllers can you push on the navigation stack?"
Suppose I have an application that is basically a database for three entities where each can have a relationship with some other entity, and the relationship is shown on a UIViewController. Users can follow those relationships and each one brings up ...
Using a navigation controller, I am pushing a new view and setting the title of it dynamically:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
int countryIndex = [indexPath indexAtPosition: [indexPath length] - 1];
NSString *selectedCountry = [[countrysData objectAtIndex: countryIndex] obje...
In my iPhone application, a user selects an item from a UITableView to choose a resource to view. The UIViewController subclass required to handle the resource is not known until the resource is retrieved, which may take a few seconds.
In response to the selection action, I push a "loading" view controller on the nav stack. That cont...
In the root table view controller I add a subview that holds an image:
[self.navigationController.navigationBar addSubview:imageView];
Then in a child table view controller that I push onto the stack I set a right UIBarButtonItem:
UIBarButtonItem *rightButton = [[UIBarButtonItem alloc] initWithTitle:@"Right" style:UIBarButtonItemSty...
Hi,
I am trying to push a view controller on the navigation stack with following code in my buttonPressed method
-(IBAction) viewButtonPressed:(id)sender {
PersonDetailViewController *personDetailViewController = [[PersonDetailViewController alloc] initWithNibName:@"PersonDetailViewController" bundle:nil];
[self.navigationController pu...
I currently have a tab bar controller set up with a navigationcontroller on one of the tabs, then I have a UITableView nib set up for that Navigationcontrollers view. All of this has been set up through IB and I want to keep it that way. Kind of like this tutorial http://twilloapp.blogspot.com/2009/05/how-to-embed-navigation-controller.h...
I have a normal UINavigationController with a UIViewController contained in it, when my view controller has a prompt applied to it (via a UINavigationItem.prompt = @"some prompt"), the prompt is animating the UIViewController's view downward.
My question is, is there an apple what to find out that a prompt will appear (and maybe the an...
Basically I have a hierarchy of locations: country, state/prov, city.
I want to present an "Add Location" modal table using a delegate.
I realize the best way to do this is to present my top level elements in a TableView, and if they are selected, I want to go down to the 'next' level. Any of the locations however, on any level should...
i am using a pushviewcontroller for navigation and i am getting default back button on the navigation bar..... i am trying to hide that default button and make my navigation bar plain.....anybody know how to hide that default navigation button on left side of the screen
...
Hi developer,
In my navigation bar i have two button at left and right position and a segmentetControll view at navigation title.
I want to change the background color of the navigation bar to black but thae color of the items on it will be another color.
how can i do it?
I try to chnage the tintColor of the navigationBar to black.
but i...
Hi everyone i want build a poem application so i want use to NavigationControlle for show each poem ! i mean i have a TableView and on there + 50 poems !
each cell have different poem ! so what can i do to import each text or HTML Files(My Pomes) to special view , that work with navigation controller ?
is it good idea to use NSArray to ...
I have seen the sample application of iPhone MP-movie player - controller.
They have added a notification on the sample code.
// Register to receive a notification that the movie is now in memory and ready to play
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(moviePreloadDidFinish:)
name:MPMovieP...
I have a UINavigationController and I have seperate UIViews that I switch between using a UISegmentControl. On switching the views, I add the view as a subview to my navigation controller's view:
[self.view addSubview:segmentTab1.view];
and
[self.view addSubview:segmentTab2.view];
Then, in the subViews, each has a UITableView, but ...
Hi
I have a navigationController, I push a new viewController onto it's stack, I have been trying to figure out a way to switch this ViewController with another viewController from within the first ViewController.
I have 3 almost identical views, depending on the user interaction I would like to be able to switch between these views wi...
When a new view controller is pushed onto the navigation stack, there is standard support for a back button with the title of the previous view controller. This button "points" to the left rather than having a rounded rectanglar shape.
Is there a standard way to create a UIBarButtonItem that "points" to the right? This button would be u...
Hi, i'm trying to load a simple uiview at the start with 2 buttons.
I would like to do the following:
-Press one of the buttons to go to a Tab bar view(and/or its controller)
-Press another one to go to a navigation view(and/or its controller)
-Also how to go back to the original view from those 2 views(tab bar and navigation)
I kno...
Hi there, im trying to programatically do a UITabBarController using a UINavigationController inside each UIViewController called by the tabs... tried everything... read every article... but 100% of the tutorials ive found uses in the UITableViewControllers... here is the app delegate:
//
// mluThunderCamAppDelegate.m
// mluThunderCam...
I have a UITabBarController whose tabs are UINavigationController. I have initialized each navigationController by:
iPhoneApp *appDelegate = (iPhoneApp *)[[UIApplication sharedApplication] delegate];
[appDelegate.navigationController2 initWithRootViewController:countryController];
I then drill down the navigationController with:
[...