程序启动时随机键入后,main.m 第 14 行中的 EXE BAD ACCESS 出现错误?
当我在 Xcode 4.1 和 iOS SDK 4.3 中的全新基于视图的应用程序项目中通过键盘随机键入时,出现了这个奇怪的崩溃 EXE_BAD_ACCESS 错误。当我创建基于视图的应用程序项目后按运行时,出现空白屏幕。当我开始按键盘上的两到五个字母时,它在 main.m 文件第 1 行崩溃。 14.
9 #import "UIKit/UIKit.h" 10 11 int main(int argc, char *argv[]) { 12 13 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 int retVal = UIApplicationMain(argc, argv, nil, nil); 15 [pool release]; 16 return retVal; 17 }
请帮忙,我想知道发生了什么事。任何链接、相关帖子都会有帮助。
谢谢。
I got this weird crash EXE_BAD_ACCESS error when I typed randomly by keyboard in freshly new View Based Application project in Xcode 4.1 and iOS SDK 4.3. When I press run after I created a View Based Application Project, a blank screen with come. And when I start to press keys from keyboard two to five letters ,it crashes on main.m file line no. 14.
9 #import "UIKit/UIKit.h" 10 11 int main(int argc, char *argv[]) { 12 13 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 int retVal = UIApplicationMain(argc, argv, nil, nil); 15 [pool release]; 16 return retVal; 17 }
Please help, I want to know what's going on. Any links, related posts would be helpful.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅此线程。这当然是 Xcode 4.1 版本的一个错误:4B103。 https://github.com/futuretap/InAppSettingsKit/issues/75#issuecomment-2343312
See this thread. It is of course a bug with Xcode 4.1 build: 4B103. https://github.com/futuretap/InAppSettingsKit/issues/75#issuecomment-2343312