実装ファイルでは、すべてのプロパティがプライベートとして示されています。
これらの違いは何ですか:
- MyObj.m
@interface MyObj ()
@property (nonatomic, strong) NSString *name;
@end
@implementation MyObj
@synthesize name = _name;
// Some other codes to use "name" like self.name or _name
@end
2. MyObj.m
@implementation MyObj
{
NSString *_name;
}
// Some other codes to use _name
@end