美文网首页
vicki753's iOS 基础-- 对象的属性方法怎么写

vicki753's iOS 基础-- 对象的属性方法怎么写

作者: vicki753 | 来源:发表于2020-06-01 21:32 被阅读0次

    if (对象) {
    SEL sel = NSSelectorFromString(属性名);
    if ([对象 respondsToSelector:sel]) {
    IMP imp = [对象 methodForSelector:sel];
    NSString (func)(id, SEL) = (void *)imp;
    NSString *f = func(对象, sel);
    return f;
    }
    }

    相关文章

      网友评论

          本文标题:vicki753's iOS 基础-- 对象的属性方法怎么写

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