警告 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 方法 同時生成 成員變量