Three20 TTNavigator TTViewController 自动加载XIB

发布于 2024-10-07 06:39:40 字数 588 浏览 3 评论 0原文

我想与您分享有关 Three20 框架的知识。

如果您使用 TTNavigator 并且您有来自 TTViewController 的子类的自定义 VC,这很烦人。它不会自动加载 NIB。

TTNavigator* navigator = [TTNavigator navigator];
TTURLMap* map = navigator.URLMap;
[map from: @"app://myvc" toViewController: [MyVC class]];

有一个解决方法和非常优雅的解决方案。

只需创建 TTViewController 的另一个子类并覆盖该类即可:

- (void) loadView
{
    [super loadView];

    // load automatically the NIB
    [[NSBundle mainBundle] loadNibNamed: NSStringFromClass([self class]) owner: self options: nil];
}

当第一次加载 VC 时,VC 将自动加载 NIB。

I thought I want to share my knowledge with you around Three20 framework.

It is annoying if you use TTNavigator and you have custom VC that is subclass from TTViewController. It does not load the NIB automatically.

TTNavigator* navigator = [TTNavigator navigator];
TTURLMap* map = navigator.URLMap;
[map from: @"app://myvc" toViewController: [MyVC class]];

There is a workaround and pretty much elegant solution.

Just make another subclass of TTViewController and overrides the class to have this:

- (void) loadView
{
    [super loadView];

    // load automatically the NIB
    [[NSBundle mainBundle] loadNibNamed: NSStringFromClass([self class]) owner: self options: nil];
}

The VC will load the NIB automatically when the VC is being loaded for first time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一世旳自豪 2024-10-14 06:39:40

示例目录中的 TTNibDemo 项目有一个 VC,它是 TTViewController 的子类。该 VC 有一个 nib,它使用 AppDelegate 中的函数加载 nib。检查一下这是否对您不起作用。

The TTNibDemo project in the samples directory has a VC which is a subclass of TTViewController. This VC has a nib and it loads the nib with a function in the AppDelegate. Check it out if this does not work for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文