質問

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.

役に立ちましたか?

解決

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

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top