I would like to create a user guide for my app to show only once. How can I create a simple UIModalPresentationFormSheet with some text in it?
EDIT:
UIViewController *newItemViewController = [[UIViewController alloc] initWithNibName:@"View.xib" bundle:nil];
newItemViewController.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentModalViewController:newItemViewController animated:YES];
You could store value in NSUserDeafualts. So in your main UIViewController in viewDidAppear :
Hope this helped.