关于property的一些知识
@property (nonatomic,assign,readonly) CGRect retweetViewFrame;
retweetViewFrame设置为readonly,只有get方法,没有set方法,所以不能用self.retweetViewFrame来赋值,只能用_retweetViewFrame来赋值.
@property (nonatomic,assign,readonly) CGRect retweetViewFrame;
retweetViewFrame设置为readonly,只有get方法,没有set方法,所以不能用self.retweetViewFrame来赋值,只能用_retweetViewFrame来赋值.