No known instance method for sel
2019-12-18 本文已影响0人
Amuxiaomu
编辑器报错:No known instance method for selector 'respondsToSelector:'
说明 在创建protocol的时候没有继承NSObject;
@protocol viewDelegate
@end
后面加上<NSObject>
@protocol viewDelegate<NSObject>
@end