gpt4 book ai didi

ios - 我应该在哪里放置我的全局宏?

转载 作者:行者123 更新时间:2023-11-29 12:26:44 25 4
gpt4 key购买 nike

我应该在哪里放置这样的调试宏,我想将其用作全局。

#define DEBUG_MODE

#ifdef DEBUG_MODE
#define DebugLog( s, ... ) NSLog( @"<%p %@:(%d)> %@", self, [[NSString stringWithUTF8String:__FILE__] lastPathComponent], __LINE__, [NSString stringWithFormat:(s), ##__VA_ARGS__] )
#else
#define DebugLog( s, ... )
#endif

因为 prefix.pch 已在 Xcode 6 中被移除。

最佳答案

只创建一个Constant.h文件。

import view controllers, macros 等需要为整个应用程序导入。

像这样在 viewcontroller 中使用它:

#import "Constant.h"

enter image description here

关于ios - 我应该在哪里放置我的全局宏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28871894/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com