Not sure if someone can help me.

I am trying to create a UIModalPresentationFormSheet with navigation. I can load the view but i am not sure how to setup the navigation controller so when a row in the tableloaded loads the edit screen. At the moment it loads a uiviewcontroller with a tableview on it from the main screen. I need to allow editing on the table to add/edit delete records. When the user clicks either add or edit a new uiviewcontroller(detail view) is pushed to screen. It would be better if i had a navigation controller right? but i do need the edit buttons and back on the nave bar.

I think i have the button adding working its more just setting up the navigationcontroller

RootViewController - TableView select a row it loads the DetailViewController

DetailViewContoller - DetailView - Contains a button that loads the FormView as a UIModalPresentationFormSheet see link below.

FormView - Loads UIModalPresentationFormSheet Formsheet - Tableview with data in it. Editing this data loads the FormDetailView http://www.bronron.com/iphoneDev/screen1.png

FormDetail view - viewcontroller with save and cancel buttons on nave bar http://www.bronron.com/iphoneDev/screen2.png

Any help would be greatly appreciated. Many thanks in advance

Thanks, Azz

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Apple has ample documentation on these basic topics. Have a look at the Sample Code and Table Guide.

link|improve this answer
feedback

When you load the UIModalPresentationFormSheet Formsheet, simply add:

UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:/*the formsheet*/];

Then just add navController to the modal view, instead of the root view. Then you will be able to add buttons and push viewControllers, etc.

link|improve this answer
Something like this? SystemPickerViewController *controller = [[[SystemPickerViewController alloc] initWithNibName:@"SystemPickerViewController" bundle:nil] autorelease]; controller.delegate = self; controller.modalPresentationStyle = UIModalPresentationFormSheet; controller.originalSystemName = currentSystem; UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:controller]; [self presentModalViewController:controller animated:YES]; – Azza Jul 4 '11 at 8:10
Yes, thats it; except change the last line to: self presentModalViewController:navController animated:YES]; – Andrew Jul 4 '11 at 17:35
I did that and it doesnt seem to load the mini view (UIModalPresentationFormSheet) it loads like a normal tableview eg the full size of screen – Azza Jul 4 '11 at 20:40
Do i need to create a new UINavigation controller for the UIModalPresentationFormSheet? – Azza Jul 5 '11 at 7:20
Sorry, I'm not quite sure what your asking. But that sounds right – Andrew Jul 5 '11 at 8:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.