使用class_addMethod方法需要导入什么

  如果在oc文件中直接使用class_addMethod方法会报这个错误,Declaration of 'class_addMethod' must be imported from module 'ObjectiveC.runtime' before it is required。

但是,发现并没有ObjectiveC.runtime这样的文件,所以无法import。

后来发现,#import ,添加这行代码就能使用class_addMethod;

你可能感兴趣的:(使用class_addMethod方法需要导入什么)