2

我在设置标题和向导航栏中添加栏按钮时遇到了一些奇怪的困难。

我的应用程序是一个选项卡式应用程序。问题出在我的第一个标签中。第一个选项卡包含一个 UINavigationController,其中包含一个 UITableViewController。来自我的 AppDelegate:

UIViewController *firstViewController = [[MyTableViewController alloc] init];
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:firstViewController];

_tabBarController = [[TFTabBarController alloc] init];
_tabBarController.delegate = self;
_tabBarController.viewControllers = [NSArray arrayWithObjects:navigationController, nil];

在 firstViewController 中选择一行时,我将 UIWebViewController 推送到导航堆栈上:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UIViewController *secondViewController = [[MyWebViewController alloc] init];
    [self.navigationController pushViewController:secondViewController animated:YES];
}

在拦截 WebView 中超链接的 onclick 时,我将另一个 UITableView 推送到导航堆栈上:

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
    NSURL *url = [request URL];
    if (navigationType == UIWebViewNavigationTypeLinkClicked)
    {
        UIViewController *thirdViewController = [[MyTableViewController alloc] init];
        [self.navigationController pushViewController:thirdViewController animated:YES];

        return NO;
    }
    return YES;
}

当thirdViewController 打开时,它的导航栏只包含带有前一个视图标题的后退按钮,用于向后导航。它的标题和右栏按钮未显示...

这就是我尝试显示它们的方式:

self.title = @"My Title";

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Push me" style:UIBarButtonItemStylePlain target:self action:@selector(push)];

我也尝试通过navigationController设置按钮,但仍然没有运气:

self.navigationController.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Push me" style:UIBarButtonItemStylePlain target:self action:@selector(push)];

我在这里做错了什么?

4

1 回答 1

0

检查它self.navigationItem并且在访问时self.navigationController不存在。nil

从文档中:

第一次访问该属性时,会创建 UINavigationItem 对象。因此,如果您不使用导航控制器来显示视图控制器,则不应访问此属性。

访问这些成员的好地方是-viewDidLoad在初始化时而不是初始化时。

于 2012-04-23T21:35:32.400 回答