在视图中加载 nib 文件时出现问题!

发布于 2024-11-10 08:00:21 字数 386 浏览 2 评论 0原文

我创建了 2 个名为“FirstView”和“SecondView”的视图。两个视图都有 nib 文件。现在我完美地获得了“FirstView”nib 文件,然后单击时,我将 SecondView 推入窗口中。 SecondView 已加载,但笔尖未显示在该视图中。它完全是白色的!

更改视图的代码:

svc = [[signupViewController alloc] initWithNibName:@"signupViewController" bundle:nil];
[vc.view removeFromSuperview];
[window addSubview:svc.view];

任何人都可以帮忙吗?

谢谢。

- 阿山

I have created 2 views named "FirstView" and "SecondView". Both views have nib files. Now I am getting the "FirstView" nib file perfectly and then on click, I am pushing my SecondView in the window. The SecondView gets loaded but the nib is not shown in that view. Its totally white!

code to change the view:

svc = [[signupViewController alloc] initWithNibName:@"signupViewController" bundle:nil];
[vc.view removeFromSuperview];
[window addSubview:svc.view];

Can anyone kindly help ?

Thanks.

-
ahsan

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

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

发布评论

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

评论(1

如梦初醒的夏天 2024-11-17 08:00:21

我想您有两个控制器,一个用于 FirstView,另一个用于 SecondView。因此,如果您以编程方式分配控制器,请确保使用 initWithNibName 初始化 secondaryViewController:此时,当您执行presentModalViewController 或pushViewController 时,您应该能够看到您的nib 视图。

I suppose you have two controllers, one for FirstView and a second one for SecondView. So if you are allocating your controller programmatically make sure you are initializing the secondViewController with initWithNibName: at this point when you perform presentModalViewController or pushViewController you should be able to see your nib view.

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