26 lines
591 B
Plaintext
26 lines
591 B
Plaintext
//
|
|
// PrefixHeader.pch
|
|
// HD wallpaper
|
|
//
|
|
// Created by aaa on 2024/7/23.
|
|
//
|
|
|
|
|
|
#ifndef PrefixHeader_pch
|
|
#define PrefixHeader_pch
|
|
#import <UIKit/UIKit.h>
|
|
|
|
//#define KLS(_key,_desc) NSLocalizedString(_key,_desc)
|
|
|
|
#define KLS(_key,_desc) ({ \
|
|
NSString *key =[_key stringByAppendingString:@"LoveWallpaper"]; \
|
|
NSString *result = NSLocalizedString(key,@""); \
|
|
result =[result stringByReplacingOccurrencesOfString:@"LoveWallpaper" withString:@""]; \
|
|
(result);\
|
|
})
|
|
|
|
|
|
|
|
|
|
#endif /* PrefixHeader_pch */
|