如何在iphone应用程序中处理try catch?

时间:2011-11-01 05:26:51

标签: iphone try-catch

我在iphone应用程序中搜索了我的级别,以便处理@try @catch。但是,我找不到使用谷歌的@try和@catch语句的确切解决方案/样本。你能帮我在我的代码中实现@try和@catch吗?请帮忙。提前谢谢。

1 个答案:

答案 0 :(得分:1)

@try {
    crashy code
} @catch (NSException *e) {
    no crash for me
} @finally {
    happens whether the code was successful or not
}