美文网首页
iOS @synthesize和@dynamic

iOS @synthesize和@dynamic

作者: 山杨 | 来源:发表于2021-11-07 16:52 被阅读0次

    @synthesize price = price_;

    • 为price属性设置成员变量price_,并且自动生成setter和getter方法的实现

    @dynamic price;

    • 不生成对应的setter和getter方法的实现
    • 在运行时动态添加setter和getter方法的实现
    • 在动态方法解析时添加setter和getter方法的实现
    • 动态方法解析的相关方法+resolveInstanceMethod:,具体实现参考objc_msgSend - 动态方法解析

    相关文章

      网友评论

          本文标题:iOS @synthesize和@dynamic

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