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.
我有一段标准的 NSUserDefault 代码,我想在编译时将其合并到多个页面中。与 Include 不同,它们需要将代码插入特定位置。
我认为 Xcode 支持这个?例如
-(void)viewDidLoad { [INSERT CODE HERE] }
为什么不将代码放入方法中并在适当的地方调用呢?
定义一个函数或方法并像往常一样调用。如果需要,使用搜索和替换。
请注意,您可以这样做:
- (void)viewDidLoad { #include "some_file.h" }
…但这是我(个人)从我的代码库中拒绝的那种风格。
ps:更详细的描述可以帮助您获得更准确的答案。