문제

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