• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 协议(protocol)构象错误 Objective C

[复制链接]
菜鸟教程小白 发表于 2022-12-13 16:12:57 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

DataProvider.h

@protocol NewDataProviderProtocol 

- (void)fetchNewData;

@end

SomeClass

#import DataProvider.h
@interface SomeClass :NSObject <NewDataProviderProtocol>

@end

当我尝试使 SomeClass 符合 NewDataProviderProtocol 时,它会说,

没有名为“NewDataProviderProtocol”的类型或协议(protocol)

这很奇怪,因为我已经导入了声明协议(protocol)的 header DataProvider.h。

所以我在 SomeClass 的接口(interface)之前转发声明 NewDataProviderProtocol 但 xcode 警告

Cannot find definition for **NewDataProviderProtocol**

这是什么原因和解决方法?



Best Answer-推荐答案


A.原因

您可能有一个包含循环,因为您也将 SomeClass.h 导入 DataProvider.h。这会导致未声明的标识符。

为什么会这样?举个例子:

// Foo.h
#import "Bar.h"
@interface Foo : NSObject 
…// Do something with Bar 
@end


// Bar.h
#import "Foo.h"
@interface Bar : NSObject 
…// Do something with Foo 
@end

如果你编译,比如说 Foo.h,预编译器会扩展这个:

他得到……:

// Foo.h
#import "Bar.h"
@interface Foo : NSObject 
…// Do something with Bar 
@end

...导入 Bar.h(并删除评论...但让我们专注于主题。)...

// Foo.h
   // Bar.h
   #import "Foo.h"
   @interface Bar : NSObject 
   …// Do something with Foo 
   @end

@interface Foo : NSObject 
…// Do something with Bar 
@end

Foo.h 不会再次被导入,因为它已经被导入了。最后:

   // Bar.h
   @interface Bar : NSObject 
   …// Do something with Foo 
   @end

@interface Foo : NSObject 
…// Do something with Bar 
@end

这很清楚:如果A依赖B,B依赖A,那么串行数据流作为一个文件,不可能同时让A在B之前,B在A之前。 (文件不是相对论的主题。)

B.解决方案

在大多数情况下,您应该给代码一个层次结构。 (有很多原因。没有进口问题是最不重要的问题之一。)在您的代码中,将 SomeClass.h 导入 DataProvider.h 看起来很奇怪。

遇到这样的问题是代码异味。尝试隔离并修复其原因。不要将代码片段移动到不同的位置以找到它工作的速度。这是抽奖。

C.结构

通常你有一个期望其他人遵守协议(protocol)的类。举个例子:

// We declare the protocol here, because the class below expects from other classes to conform to the protocol.

@protocol DataSoure
…
@end

@interface Aggregator : NSObject 
- (void)addDataSourceid<DataSource>)dataSource 
// We are using a protocol, because we do not want to restrict data sources to be subclass of a specific class.
// Therefore in this .h there cannot be an import of that – likely unknown - class
@end

SomeClass,符合协议(protocol)的

#import "Aggregator.h"

@interface SomeClass:NSObject<DataSource>
…
@end

关于ios - 协议(protocol)构象错误 Objective C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37065472/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap