如何在 UINavigationControl 的右上角创建主页按钮。请注意,我已经在名为 ViewControllerSecond 的第二个 UIviewController 上实例化了我的 UINavigationControl。我希望能够拥有传统的“主页”图标,并在被按下以辞职回到名为:ViewController 的 appDelegate 中的第一个 UIviewControler 时。
我已经做到了这一点:
@property (nonatomic, weak) UIBarButtonItem *homeProperty;
UIBarButtonItem *homeButton = [[UIBarButtonItem alloc] initWithTitle:@"Home" style:UIBarButtonItemStylePlain target:self action:@selector(home)];
[self.navigationItem setLeftBarButtonItem:homeButton animated:NO];
但我不能将它与我的第一个 ViewController 链接或用主页按钮图像替换文本。
非常感谢