私は以下のコードを持っています。私はそれがスレッドセーフ戦略についていくつかの違いがあるのだろうかself.value
と思っていますか?_value
//temp.h
@interface Temp:NSObject
@property(nonatomic, strong) NSInteger *value;
@end
//temp.m
@implementation Temp
@synthesize value = _value;
- (void)someMethod:(NSInteger)someValue {
self.value = someValue;
}
- (void)someOtherMethod:(NSObject *)someValue {
_value = someValue;
}
@end