可能报错的代码需要执行的方法

@try {
    <#Code that can potentially throw an exception#>
}
@catch (NSException *exception) {
    <#Handle an exception thrown in the @try block#>
}
@finally {
    <#Code that gets executed whether or not an exception is thrown#>
}

你可能感兴趣的:(可能报错的代码需要执行的方法)