我有問題顯示導航欄的rightBarButtonItem - 我試圖在應用程序委託中創建它,我的UINavigationController設置。rightBarButtonItem不會出現在導航欄iOS
代碼如下:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
RSCListViewController *list = [[RSCListViewController alloc] initWithStyle:UITableViewStylePlain];
self.navController = [[UINavigationController alloc] initWithRootViewController:list];
UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithTitle:@"+"
style:UIBarButtonItemStylePlain
target:list
action:@selector(addPressed:)];
self.navController.navigationItem.rightBarButtonItem = barButton;
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
[DatabaseManager openDatabase];
return YES;
}
運行應用程序,沒有按鈕項目出現在導航欄上。
我不確定我是否漏掉了一些明顯的東西 - 我嘗試使用相關的堆棧溢出線程糾正問題並沒有取得任何成功。
任何幫助表示讚賞。
一切顯示正常? – Kyle