Whats the difference between the following pieces of code from objective C stand point?
@interface MyClass : NSObject {
}
@property (nonatomic) AnotherClass *obj;
@end
and
@interface MyClass : NSObject {
@property (nonatomic) AnotherClass *obj;
}
@end
??
The second one is incorrect. That’s the only difference.