以编程方式添加 UIBarButtonItem 的正确方法是什么?在我的情况下,我试图添加一个,rightBarButtonItem
并且我一直在控制器层次结构中跳跃,但我似乎无法让按钮显示在任何地方。
这是我当前的代码:
- (void)viewDidLoad {
[super viewDidLoad];
[self.navigationItem setRightBarButtonItem:[[[UIBarButtonItem alloc] initWithImage:[[UIImage alloc] initWithContentsOfFile:@"Barcode-White.png"] style:UIBarButtonItemStylePlain target:self action:@selector(scanEquipment:)] autorelease]];
}
我希望有人能引导我走向正确的方向。我试图从中调用它的控制器是 3 个级别。所以,UITabBarController
-> UIViewController (Settings, 1st level)
-> UIViewController (Vehicle, 2nd level)
-> UIViewController (Inventory, 3rd level)
。
无论如何,提前感谢您的帮助!