美文网首页
类库常用关键字

类库常用关键字

作者: Harely | 来源:发表于2020-05-01 20:32 被阅读0次

断言

  • 参数判断 NSParameterAssert

//AFNetworking 代码摘取
- (NSMutableURLRequest *)requestWithMethod:(NSString *)method
                                 URLString:(NSString *)URLString
                                parameters:(id)parameters
                                     error:(NSError *__autoreleasing *)error
{
    //断言,debug模式下,如果缺少改参数,crash
    NSParameterAssert(method);
    NSParameterAssert(URLString);

    NSURL *url = [NSURL URLWithString:URLString];

    NSParameterAssert(url);

}

相关文章

网友评论

      本文标题:类库常用关键字

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