如果我想在viewcontroller中使用單個對象,什麼是正確的聲明方法? 使用@property我我.m文件在標頭中使用@property或@interface
@property (nonatomic, strong) UITextView *resolutionText;
@property (nonatomic, strong) AWLResolutionView *myView;
或在我的.h文件
@interface
{
@private
UITextView *_resolutionText;
AWLResolutionView *myView;
}
第一個(在.m文件中聲明它)。後者是沒有匿名類別時的舊版本:) – HAS
另請注意** Objc中沒有任何**是真的**私有。 – HAS
這可能是有用的.. http://stackoverflow.com/questions/4903651/is-there-any-reason-to-declare-ivars-if-youre-using-properties-exclusively-in-o – Amar