解决Xcode NSLog打印不全的问题
ifdef DEBUG
define YLNSLog(FORMAT, ...) fprintf(stderr,"%s:%zd\t%s\n", [[[NSString stringWithUTF8String: FILE] lastPathComponent] UTF8String], LINE, [[NSString stringWithFormat: FORMAT, ## VA_ARGS] UTF8String]);
else
define NSLog(FORMAT, ...) nil
endif