在找到答案之后,我发现了很多相关的问题但是在实施之后我仍然无法摆脱这个错误。
我是一个AFHTTPRequestOperationManager
类的课程。在导入语句结束后的这个类.h
文件中,我写了@protocol apiClientDelegate;
,@interface
中有一个@property (weak) id<apiClientDelegate>delegate;
,后面是@end
我&#39写完:
@protocol apiClientDelegate <NSObject>
@required
-(void)finalImageURLs:(NSMutableArray*)array;
@end
所以在另一个UICollectionViewController
的课程中,我将其写为@interface GalleryCollectionViewController : UICollectionViewController <apiClientDelegate>
并且仍然显示此错误。以下是截图:
并且在它给出错误的类中:
更新
在其中一条评论之后,我在@protocol apiClientDelegate;
中添加了GalleryCOllectionViewController
,但现在它开始显示此警告,并且该方法未执行: