我在iphone应用程序中搜索了我的级别,以便处理@try @catch。但是,我找不到使用谷歌的@try和@catch语句的确切解决方案/样本。你能帮我在我的代码中实现@try和@catch吗?请帮忙。提前谢谢。
答案 0 :(得分:1)
@try {
crashy code
} @catch (NSException *e) {
no crash for me
} @finally {
happens whether the code was successful or not
}