インターネットでこのコードスニペットを見ました(http://iphonedevelopment.blogspot.com/2008/12/outlets-property-vs-instance-variable.html)。目的C - プロパティを定義する際にインスタンス変数を定義する
#import <UIKit/UIKit.h>
@interface MyViewController : UIViewController {
UILabel *myLabel;
}
@property (nonatomic, retain) IBOutlet UILabel *myLabel;
@end
私の質問は... @synthesizeが呼び出されたとき、UILabelインスタンス変数が自動的に作成されないのですか?ヘッダーファイルにインスタンス変数を作成するポイントは何ですか?あなたは@propertyだけで離れてもらえますか?
[Objective-C 2.0のプロパティとインスタンス変数]の重複可能性(http://stackoverflow.com/questions/3074248/properties-and-instance-variables-in-objective-c-2-0) – Brian