程序启动时随机键入后,main.m 第 14 行中的 EXE BAD ACCESS 出现错误?

发布于 2024-12-08 16:29:44 字数 475 浏览 1 评论 0原文

当我在 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 技术交流群。

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

发布评论

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

评论(1

留蓝 2024-12-15 16:29:44

请参阅此线程。这当然是 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

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