IMP用法

作者: elephant0001 | 来源:发表于2019-03-12 08:59 被阅读0次

    /// 请求回调 通用处理

    - (void)makeCommonResponse:(id)responseObject selector:(SEL)selector {

        int code = [response ObjectintForKey:@"status"];

        NSString *msg = [response ObjectstringForKey:@"msg"];

        if(code ==200) {

            IMP imp = [self methodForSelector:selector];

            void(*func)(id,SEL,id) = (void*)imp;

            func(self, selector, responseObject);

        }

    }

    可以调用传过来的 方法!

    相关文章

      网友评论

          本文标题:IMP用法

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