gpt4 book ai didi

ios - 将标题设置为 TableViewController - 初学者

转载 作者:行者123 更新时间:2023-11-29 02:15:28 25 4
gpt4 key购买 nike

我有一个名为 MyViewController 的 UIViewController。当我点击一个按钮时,我会转到另一个 UITableVIewController。

我用来导航到这个 TableviewController 的代码是:

UIStoryboard *s = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
UIViewController *v = [s instantiateViewControllerWithIdentifier:@"tbviewc"];
v.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentViewController:v animated:YES completion:NULL];

我已将 NavigationController 设置为此 TableViewController

现在我想为它设置标题。我该怎么做?

注意:这是一个 Storyboard应用程序。

以下均无效:

self.navigationItem.title = @"the title";

最佳答案

我猜你的 self.navigationController 是 nil你应该这样做:

    UIViewController *v = [s instantiateViewControllerWithIdentifier:@"tbviewc"];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:s];
v.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentViewController:nav animated:YES completion:NULL];

然后尝试在UIViewController(v)中使用self.title = @"title";

或者不是 nil,试试这个:

    UILabel *title = [[UILabel alloc] initWithFrame:CGRectMake(0, 0,40,100)];
title.text = @"title";
UINavigationController *nav = [UINavigationController new];
nav.navigationItem.titleView = title;

关于ios - 将标题设置为 TableViewController - 初学者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28803378/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com