Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v
/
thirdparty
/
ios
/
ios.m
8
lines
·
7
sloc
·
254 bytes
·
38c517c1a2a5273e9eb3ea175ff1315ecd91808f
Raw
1
#import <Foundation/Foundation.h>
2
3
void WrappedNSLog(const char *message,...) {
4
va_list args;
5
va_start(args, message);
6
NSLog(@"%@",[[NSString alloc] initWithFormat:[NSString stringWithUTF8String:message] arguments:args]);
7
va_end(args);
8
}
9