无法在 iPhone 设备上加载捆绑包中的笔尖”信号信号”
我正在使用此代码加载我的视图,但发生了错误,代码如下:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试以下代码:
而不是仅仅分配视图控制器对象。她的 NIB 是您的 xib 文件名,不带 .xib 扩展名。
Try the following code:
instead of just allocating the view controller object. Her NIB is your xib file name without the .xib extension.