我只是想避免警告(没有编译器抑制),但不想在我的文件中添加一些包含。这是我的代码:
@protocol MyProto;
// ...
Protocol *p = @protocol(MyProto);
这是我收到的警告:
@protocol is using a forward protocol declaration of MyProto [-Wat-protocol]
Best Answer-推荐答案 strong>
使用协议(protocol)文字(@protocol )需要在编译时链接到协议(protocol),这需要编译器查看协议(protocol)的定义。
我不明白您为什么不愿意“在我的文件中添加一些包含”。在使用该东西的实现文件中包含定义某些东西的头文件是很正常的。应该没有缺点。
如果您想在运行时从字符串中查找协议(protocol),您可以执行 NSProtocolFromString(@"MyProto") 之类的操作。
关于ios - 协议(protocol)前向声明有什么警告?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/36257919/
|