Reputation: 12934
I wonder if it is possible to show additional title above navigation bar like it is done in iOS7 WiFi settings (Other Network) - Enter network information.
This is how I present my navigation controller:
UIViewController *vc = [UIViewController new];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:vc];
[self.navigationController presentViewController:navController animated:YES completion:nil];
I was looking for a solution but I haven't found anything.
Upvotes: 1
Views: 292
Reputation: 8202
Set the prompt
of the view controller's navigationItem
:
UIViewController *vc = [UIViewController new];
vc.navigationItem.prompt = @"Enter network information";
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:vc];
[self.navigationController presentViewController:navController animated:YES completion:nil];
Upvotes: 4