我正在构建一个应用程序,可以调用顶部导航中的三个按钮。酒吧。我不想做标签栏,因为标签中只有一个项目。
在下面的代码中,左键(编辑)工作正常。右键 - 卡的链接也可以正常工作。然而,愚蠢的添加按钮给我一个错误,它无法找到选择器(insertNewObject)。
如果我拿出我的自定义代码并使用“在紧要关头工作”的代码,那么它就可以了。
我很欣赏知道我做错了什么,或者另外一种处理手头问题的方法 - 链接到应用程序的另一部分。
TIA。
/*
// THIS WORKS IN A PINCH
// Set up the edit and add buttons.
self.navigationItem.leftBarButtonItem = self.editButtonItem;
UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(insertNewObject)];
self.navigationItem.rightBarButtonItem = addButton;
[addButton release];
// END OF WHAT WORKS
*/
// create a toolbar to have two buttons in the right
UIToolbar* tools = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 105, 44.01)];
self.navigationItem.leftBarButtonItem = self.editButtonItem;
// create the array to hold the buttons, which then gets added to the toolbar
NSMutableArray* buttons = [[NSMutableArray alloc] initWithCapacity:3];
UIBarButtonItem* addButton = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(insertNewObject)];
addButton.style = UIBarButtonItemStyleBordered;
[buttons addObject:addButton];
[addButton release];
// create a standard "add" button
// create a flip button
UIBarButtonItem* flipButton = [[UIBarButtonItem alloc]
initWithTitle:@"Cards" style:UIBarButtonItemStyleBordered
target:self action:@selector(flipToFront)];
[buttons addObject:flipButton];
[flipButton release];
// stick the buttons in the toolbar
[tools setItems:buttons animated:NO];
[buttons release];
// and put the toolbar in the nav bar
UIBarButtonItem* rightButtonBar = [[UIBarButtonItem alloc] initWithCustomView:tools];
self.navigationItem.rightBarButtonItem = rightButtonBar;
[rightButtonBar release];
答案 0 :(得分:2)
您可能在选择器名称后缺少冒号。我认为只是放入@selector(newObject)是对没有参数的方法的引用。 @selector(newObject :)可能会起作用。