我開始學習Objective-C和我有一個問題:聲明類屬性的Objective-C
當你聲明一個類的屬性,就是這樣的區別?
第一種情況:
@interface ViewController : UIViewController
{
UILabel *label;
}
@property(nonatomic,retain) UILabel *label;
@end
第二種情況:
@interface ViewController : UIViewController
{
}
@property(nonatomic,retain) UILabel *label;
@end
在第一種情況下,我聲明瞭一類具有一個屬性(*的UILabel標籤),後來,我聲明瞭該標籤的屬性。
在第二種情況下,我只聲明屬性。 我一直認爲我應該聲明類屬性。
[Property Declaration and Automatic Backing Storage Allocation]的可能重複(http://stackoverflow.com/questions/3238009/property-declaration-and-automatic-backing-storage-allocation) – outis
Ups!抱歉!! :( – dpbataller