1 | |
---|---|
2 | #pragma clang system_header |
3 | |
4 | @class NSString; |
5 | |
6 | // Do not emit warnings when using NSLocalizedString |
7 | extern NSString *GetLocalizedString(NSString *str); |
8 | #define NSLocalizedString(key) GetLocalizedString(key) |
9 | |
10 | #define NSAssert(fmt, arg) NSLog(fmt, arg, 0, 0) |
11 |