0

我正在开发 iPad 应用程序,其中 UINavigationController 和 UIToolBar 的单击事件在 iOS 5 中运行良好,但是在 iOS 6 中无法正常运行。我的代码:

self.window.rootViewController=navCon;    
[self.window makeKeyAndVisible];

在其他类中,我将右栏按钮添加到 UINavigationBar

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"navBtn.png"] title:@"About" target:self action:@selector(aboutClicked)];

我没有收到 rightBarButton 的点击事件。任何帮助将不胜感激。

4

1 回答 1

0

UIBarButtonItem 没有这个方法。请参阅http://developer.apple.com/library/ios/#documentation/uikit/reference/UIBarButtonItem_Class/Reference/Reference.html

于 2013-05-16T13:53:18.410 回答