所以,我已经看到了类似这样前面的问题,但他们都没有帮助。 我读过Apple的文档太多,但我不明白的地方我已经错了。 据我所知我所做的一切在逻辑上,但是当我在我完成按钮点击一个UIToolbar
叠加,按钮可以推,但它不会做任何事情。 这显然意味着它不承认编写的代码。 怎么会呢?
我希望把“TableViewController”最多的笔尖被点击我的一个完成按钮UIToolbar
。 但下面是不允许点击带来了一个新的视角。 我该如何纠正呢? 请告诉我我哪里错了,哪些应予以更换,以及为什么。
//Here's the selector:
UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:
UIBarButtonSystemItemDone target:self action:@selector(doneButtonPressed)];
以下是我做了我的行动。
-(void)doneButtonPressed {
TableViewController *tableView = [[TableViewController alloc]
initWithNibName:@"TableViewController" bundle:nil];
tableView.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:tableView animated:YES];
}
// Yet nothing happens when I click on my done button on my overlay. The button
// can be clicked, but nothing happens. Please shed any insight pleasee!