我开始在 iOS 开发世界中遇到了一些不熟悉的东西。在我的MainViewController.m
文件中,我有:
//import statements
@interface MainViewController() <CarouselViewDelegate>
//declaration of properties
@end
@implementation
//code
@end
MainViewController.h
文件看起来像这样
@interface MainViewController : UIViewController
//code
@end
我感到困惑的是,这是做什么的(一般意义上)@interface MainViewController() <CarouselViewDelegate>
:. 看起来它使用泛型,但不确定这里发生了什么。
任何帮助表示赞赏,谢谢!