xcode消除Undeclared selector 警告
2018-04-28 本文已影响125人
半杯故事
Undeclared selector 'originalTextFieldShouldReturn:'
加入
#pragma GCC diagnostic ignored "-Wundeclared-selector"
出现Category is implementing a method which will also be implemented by its primary class警告的处理方法:
#pragma clang diagnostic ignored "-Wobjc-protocol-method-implementation"