我做了个实验
@interface MTBaseListViewController <T> : UIViewController
- (void )requestWithBlock1:(void (^)(T data ))block;
- (void )requestWithBlock2:(void (^)(MTListPagingModel<T> *data ))block;
@end;
声明没有问题。
在使用时:
@interface MTTestViewController : MTBaseListViewController <MTTestModel *>
@end
@implementation MTTestViewController
- (void )requestWithBlock1:(void (^)(MTTestModel *data ))block {
}
- (void )requestWithBlock2:(void (^)(MTListPagingModel<MTTestModel *> *data ))block {
}
@end
都会提示 Conflicting parameter types in implementation ....
block 内的声明还是不支持泛型吗?
但是我看到NSArray<ObjectType> (NSExtendedArray )
里的 enumerateObjectsUsingBlock 是支持的
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.