Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我经常在不同的类中使用相同的 void 方法。我不想在每个单独的类中编写 void 代码,但能够从单独的类中调用它,因为我经常需要更改其中的代码并且不想遍历每个类并单独更改它(最大限度地减少错误在代码中)。
有没有办法做到这一点?
创建一个类并将方法作为类方法添加到它:
我的助手.h
@interface MyHelper : NSObject +(void)utilityMethod; ...
我的助手.m
@implementation +(void)utilityMethod { ...
然后可以参考类:
#include "MyHelper.h" .... [MyHelper utilityMethod];
现在代码在一个地方,可以通过包含 .h 文件添加到任何你想要的地方