iOS开发——delegate的相关警告

  警告:Assigning to 'id<...Delegate>' from incompatible type '...ViewController *const_strong'

  解决方法:在viewcontroller.m文件中,将@interface ViewController (),改为@interface ViewController ()<...ViewDelegate>,警告就会消失。

原文地址:https://www.cnblogs.com/yyt-hehe-yyt/p/5338087.html