属性名称上的下划线前缀?
任何人都可以向我指出使用下划线的解释,我一直认为它们用于突出显示您正在访问iVar [_window release];而不是通过setter / getter方法访问iVar,[[self window] release];或者[self.window release];我只是想验证我的理解是正确。
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet UILabel *markerLabel;
@synthesize window = _window;
@synthesize markerLabel = _markerLabel;
慕森王
幕布斯7119047