iphone开发出现警告:Sending ‘ViewController *const __strong‘ to parameter of incompatible type ‘id<***Delegate>‘
原因是没有在头文件实现相应协议。
解决方法是在头文件中
@interface 一行后面加上 <协议名>
Sending 'ViewController *const __strong' to parameter of incompatible type 'id<***Delegate>'
时间: 2024-12-07 13:04:37