我的调试信息去哪儿了? Xcode 3.2.3
我正在尝试一些 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.]
andDebugging 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用项目的“调试”配置,并在附加调试器的情况下实际运行,即 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.