在xCode 4.3下运行我的应用程序时,我在上面的主题行中收到警告。
以下是有问题的代码:
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:map];
UIBarButtonItem *rightButton = [[UIBarButtonItem alloc] initWithTitle:@"Done"
style:UIBarButtonSystemItemDone target:self action:@selector(removeCurrent)];
map.navigationItem.rightBarButtonItem = rightButton;
[self presentModalViewController:navigationController animated:YES];
有人可以帮忙吗?
谢谢!
答案 0 :(得分:13)
UIBarButtonSystemItemDone
应为UIBarButtonItemStyleDone
。系统项用于不同的init方法 - initWithBarButtonSystemItem:
- 这实际上可能对您更好,因为它将返回本地化的完成按钮而不是您现在拥有的固定文本。