美文网首页
Property & Instance

Property & Instance

作者: SuperDKeng | 来源:发表于2016-10-20 16:42 被阅读7次

    Property 是属性  在.m中系统会自动的给你生成下划线的实例变量和getter和setter的方法,可以使用点语法和self.

    Instance 是实例变量  ,{里面声明变量},然后在.m文件中@synthesize来让编译器给你自动生成setter和getter方法

    类别中的属性

    类别中只能添加方法,不能添加实例变量。如果想要添加,必须使用@dynamic <#property#>来声明变量,进而还要实现getter和setter的方法

    相关文章

      网友评论

          本文标题:Property & Instance

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