美文网首页
可能报错的代码需要执行的方法

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

作者: 蒋昉霖 | 来源:发表于2016-05-13 18:03 被阅读12次
    @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#>
    }

    相关文章

      网友评论

          本文标题:可能报错的代码需要执行的方法

          本文链接:https://www.haomeiwen.com/subject/nrlmrttx.html