当我发现异常时,如何在崩溃日志中留言?

时间:2011-01-20 04:57:51

标签: iphone

当我发现异常时,我想在crashlog中留言。 NSLog()有用吗?

1 个答案:

答案 0 :(得分:0)

在catch块中写下来。 NSLog(@“%@”,[e reason]); 其中e是NSError类的对象。

<强>编辑: - @try {         //你的代码     }     @catch(NSException * e){         NSLog(@“%@”,[e reason]);     } 上面的代码找出了代码之间出现的任何异常。 我希望能帮助你。