Auto property synthesis will not synthesize property 'size'; it will be implemented by its superc...

警告 Auto property synthesis will not synthesize property 'size'; it will be implemented by its superclass, use @dynamic to acknowledge intention

表示:类中的这个属性,在父类中也存在,这时候编译器不知道到底是 到底 synthesize 哪个属性。就会报错。

  • 可以使用 @synthesize 属性; 去自动 synthesize 该类属性
  • 也可以使用 @dynamic 属性; 去手动去实现 get 和 set 方法 同时生成 成员变量

你可能感兴趣的:(Auto property synthesis will not synthesize property 'size'; it will be implemented by its superc...)