ios 代码添加

This commit is contained in:
Jin857
2024-11-26 11:14:20 +08:00
parent eea39e2ada
commit 9a4ec3a4d0
35 changed files with 1489 additions and 321 deletions

View File

@@ -0,0 +1,15 @@
#ifdef DEBUG
#define GLog(...) NSLog(@"%s\n %@\n\n", __func__, [NSString stringWithFormat:__VA_ARGS__])
#else
#define GLog(...)
#endif
NS_ASSUME_NONNULL_BEGIN
@interface TLogUtil : NSObject
+ (instancetype)sharedInstance;
- (void)debug:(BOOL)isDebug;
- (void)print:(NSString *)message;
@end
NS_ASSUME_NONNULL_END