如何在UISplitviewcontroller的RootViewController中动态显示UINavigationBar提示
喜欢: 在我的app delegate
中// having UINavigationController inside
UISplitViewController *recentEntrySplitViewConntroller;
NSArray *array = [NSArray arrayWithObjects:recentEntrySplitViewConntroller,controller2, nil];
tabBarController = [[UITabBarController alloc] init];
[self.window addSubview:[tabBarController view]];
所以在RecentEntrySplitViewConntroller的UINavigationController里面的RootViewController的viewDidLoad中,如何显示UINavigationBar提示
答案 0 :(得分:4)
self.navigationItem.prompt = @"My Prompt";