我的代码中有一个错误,我似乎无法找到它!我已经以编程方式创建了一个名为addButton的按钮,并将其选择器设置为add - 但每次按下按钮时应用程序都会在模拟器中崩溃。这是我的代码。
-(void)viewDidLoad{
UIBarButtonItem *addButton = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self
action:@selector(add:)];
self.navigationItem.rightBarButtonItem = addButton;
[addButton release];
}
,添加按钮的代码是:
- (IBAction)add
{
MyDetailViewController * detail = [[MyDetailViewController alloc]init];
detail.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:detail animated:YES];
//[detail.text becomeFirstResponder];
[detail release];
}
感谢帮助人员:D
答案 0 :(得分:2)
您的添加选择器在末尾有一个冒号,这意味着它尝试使用带参数的add方法,但您的add方法不期望参数对象。您需要通过将Bar Button Item分配更改为:
来从选择器中删除冒号UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(add)];