标签:ios
iphone开发出现警告:Sending ‘ViewController *const __strong‘ to parameter of incompatible type ‘id<***Delegate>‘
原因是没有在头文件实现相应协议。
解决方法是在头文件中
@interface 一行后面加上 <协议名>
Sending 'ViewController *const __strong' to parameter of incompatible type 'id<***Delegate>'
标签:ios
原文地址:http://blog.csdn.net/liyun123gx/article/details/41913559