Question

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.

enter image description here

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.

Was it helpful?

Solution

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];

Example

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top