在我的菜鸟头脑和程序中,当我为一个类创建一个类别时,我在一个新文件中创建它
像NSArray+Shuffle.h and .m
但我注意到,当我创建例如一个 ViewController 时,
我在实施中有:
@interface PingusViewController ()
@end
@implementation PingusViewController
...
@end
所以我的问题是:
是什么
@interface PingusViewController ()
@end
部分?,这是用于类别吗?或者有什么用?,如果是用于类别,为什么在这里使用它而不是在一些新文件中?
谢谢!