tweak如何新增加一个变量以保存原有函数的返回值,是通过运行时class_addProperty方法添加新属性吗,还是别的方法啊,谁知道的给个提示呢,感谢不尽。
1 个赞
假设原有函数返回值类型是id,那就简单的
id result = %orig;
// 你的代码
return result;
tweak如何新增加一个变量以保存原有函数的返回值,是通过运行时class_addProperty方法添加新属性吗,还是别的方法啊,谁知道的给个提示呢,感谢不尽。
假设原有函数返回值类型是id,那就简单的
id result = %orig;
// 你的代码
return result;