Extension非常像是没有命名的类别。
@interface MyClass : NSObject
@property (assign, nonatomic) NSInteger age;
@end
//一般的时候,Extension都是放在.m文件中@implementation的上方。
@interface MyClass ()
@property (assign, nonatomic) NSInteger age;
@end
使用Extension需要注意的点:
- Extension中的方法如果没有在@implementation中实现,则会报警告。
网友评论