我有一个UIViewController
命名EditNoteViewController_iPad
,我已经为这个类创建了一个类别EditNoteViewController_iPad (Operation)
。
该类别包含一些委托方法。
我的 setDelegate 方法在 EditNoteViewController_iPad 中,我无法转移到类别类。
现在我收到关于 setDelegate 方法的警告,如下所示:
Sending 'EditNoteViewController_iPad *const __strong' to parameter of incompatible type 'id<ZNVideoViewDelegate>'
显示警告的行EditNoteViewController_iPad
:
[Video setDelegate:self];
如何删除此警告?
我的项目运行良好。我只想删除此警告。