无法在 iPhone 设备上加载捆绑包中的笔尖”信号信号”

发布于 2024-11-10 07:28:57 字数 230 浏览 1 评论 0原文

我正在使用此代码加载我的视图,但发生了错误,代码如下:

charecterprofile *View = [[charecterprofile alloc] init];
    [self.navigationController pushViewController:View animated:YES];
    [View release];

但它不起作用。我要做什么?

I am using this code to load my view but the error is occured, Here is the code:

charecterprofile *View = [[charecterprofile alloc] init];
    [self.navigationController pushViewController:View animated:YES];
    [View release];

But it does not work. What will i do?

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

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

发布评论

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

评论(1

自在安然 2024-11-17 07:28:57

尝试以下代码:

charecterprofile *view = [[charecterprofile alloc] initWithNibName:@"NIB" bundle:[NSBundle mainBundle]];

而不是仅仅分配视图控制器对象。她的 NIB 是您的 xib 文件名,不带 .xib 扩展名。

Try the following code:

charecterprofile *view = [[charecterprofile alloc] initWithNibName:@"NIB" bundle:[NSBundle mainBundle]];

instead of just allocating the view controller object. Her NIB is your xib file name without the .xib extension.

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