我正在构建并使用webView's
. 通过选择一些选项卡,我还显示了一些非 webView视图。我的导航控制器有问题
我在我的Ncontrolls
类中设置我的 navigationController 有下一个代码:
- (void)push{
UIViewController myVC = [[UIViewController alloc] init];
myVC.view.frame = currentNC.view.frame;
UIImageView *logo = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"house.png"]];
UIBarButtonItem *buttonItem = [[UIBarButtonItem alloc] initWithCustomView:logo ];
[myVC.navigationItem setLefttBarButtonItem:buttonItem];
[currentNC pushViewController:myVC animated:NO];
每次我想使用后退按钮时,当我在 UIWebView 中更改页面时,我都会调用下一个代码并使用push
,并添加后退按钮
UIViewController *VC1 = [[UIViewController alloc] init];
[[AppDelegate sharedInstance].currentNC pushViewController:VC1 animated:NO];
我有一些视图,我想在后退按钮附近添加另一个按钮,而不是替换它,而是添加附近。我正在寻找在某些视图中设置我的按钮靠近后退按钮的选项。
此代码添加一个按钮:
UIBarButtonItem *button1 = [[UIBarButtonItem alloc] initWithCustomView:trView];
[VC1.navigationItem setLefttBarButtonItem:button1 ];
[currentNC pushViewController:dummyVC animated:NO];
当我要进入下一个视图并出现后退按钮时,我的button1
消失了。此时我如何将它添加到后退按钮附近?