在控制台打印不完整的解决问题

添加如下代码就可以了

#define CLog(format, …) NSLog(format, ## VA_ARGS)
#define NSLog(FORMAT, …) printf("%s\n", [[NSString stringWithFormat:FORMAT, ##VA_ARGS] UTF8String]);

你可能感兴趣的:(ios,object,c)