我正在尝试向我的navigationController的工具栏添加一些按钮:我看到了工具栏,但没有按钮。这是我的代码中设置工具栏的部分...
(这是我的AppDelegate)
// Create a table view controller
RootViewController *rootViewController = [[RootViewController alloc]
initWithStyle:UITableViewStyleGrouped];
rootViewController.managedObjectContext = context;
rootViewController.entityName = @"County";
//Navigation Controller
UINavigationController *aNavigationController = [[UINavigationController alloc]
initWithRootViewController:rootViewController];
self.navigationController = aNavigationController;
//Barbuttons
UIBarButtonItem *homeButton;
homeButton = [[[UIBarButtonItem alloc] initWithTitle:@" Inizio " style:UIBarButtonItemStyleBordered target:self action:@selector(home)] autorelease];
UIBarButtonItem *barButton;
barButton = [[[UIBarButtonItem alloc] initWithTitle:@" Funzioni online " style:UIBarButtonItemStyleBordered target:self action:@selector(caricamappa)] autorelease];
UIBarButtonItem *creditsButton;
creditsButton = [[[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"credits2.png"] style:UIBarButtonItemStyleBordered target:self action:@selector(credits)] autorelease];
NSArray *baritems = [NSArray arrayWithObjects: homeButton, barButton, creditsButton, nil];
[window addSubview:[navigationController view]];
[self.navigationController.toolbar setItems:baritems];
[self.navigationController setToolbarHidden:NO];
[window makeKeyAndVisible];
[rootViewController release];
[aNavigationController release];
你知道我的错误吗?
发布于 2012-03-22 12:00:21
应该将按钮添加到rootViewController的navigationItem属性中,而不是添加到导航控制器的工具栏中。类似于:
rootViewController.navigationItem.rightBarButtonItems = barItems;
发布于 2012-03-22 11:56:36
查看the documentation,特别是这一部分:
此工具栏内容的管理是通过与此导航控制器关联的自定义视图控制器完成的。对于导航堆栈上的每个视图控制器,可以使用UIViewController的setToolbarItems:animated: method分配一组自定义工具栏项。
https://stackoverflow.com/questions/9821292
复制相似问题