我的调试信息去哪儿了? Xcode 3.2.3

发布于 2024-09-09 22:36:37 字数 700 浏览 6 评论 0原文

我正在尝试一些 iPhone 滚动视图测试,但是当我加载视图时,应用程序就崩溃了。

我在 Xcode 中没有得到任何调试信息,没有 EXC_BAD_ACCESS,没有错误,只是

[会话于 2010-07-16 10:35:21 +0100 开始。]

调试器窗口底部的调试已终止

我已将目标首选项中的生成调试符号设置为启用,调试信息格式为带有 dSYM 的 DWARF。

我怎样才能调试这个问题而不出现错误?

这是代码,但我更关心我的调试信息去了哪里

- (void)loadView {
UIScrollView *s = [[UIScrollView alloc] initWithFrame:[[self view] bounds]];

NSArray *a = [[NSBundle mainBundle] loadNibNamed:@"MyView" 
                                     owner:self options:nil];

UIView *v = [a objectAtIndex:0];

[s setContentSize:CGSizeMake(400,500)];
[s addSubview:v];
[[self view] addSubview:s];
}

谢谢

Im trying out some iPhone scroll view tests, but when i load the view, the app just blows up.

I get no debugging information in Xcode, no EXC_BAD_ACCESS, no errors, just

[Session started at 2010-07-16 10:35:21 +0100.]
and
Debugging terminated in the bottom of the debugger window.

I have set Generate Debug Symbols in the target preferences to ENABLED, Debug Information Format is DWARF with dSYM.

How can i debug this problem with no errors?

This is the code, but im more concerned about where my debug info has gone

- (void)loadView {
UIScrollView *s = [[UIScrollView alloc] initWithFrame:[[self view] bounds]];

NSArray *a = [[NSBundle mainBundle] loadNibNamed:@"MyView" 
                                     owner:self options:nil];

UIView *v = [a objectAtIndex:0];

[s setContentSize:CGSizeMake(400,500)];
[s addSubview:v];
[[self view] addSubview:s];
}

Thanks

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

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

发布评论

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

评论(1

琉璃梦幻 2024-09-16 22:36:37

使用项目的“调试”配置,并在附加调试器的情况下实际运行,即 CMD-Y 或 CMD-ALT-ENTER。

Use the "Debug" configuration of the project, and actually run with the debugger attached, i.e. CMD-Y or CMD-ALT-ENTER.

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