#define NSLog(...) NSLog(__VA_ARGS__); //原始输出
#define NSLogDetails(format, ...) NSLog((@"**** %s [Line %d] " format), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
#define uRect(__rect) NSLog(@"**** %s [Line %d] \t x:%.4f \t y:%.4f \t w:%.4f \t h:%.4f", #__rect, __LINE__, __rect.origin.x, __rect.origin.y, __rect.size.width, __rect.size.height);
#define uSize(__size) NSLog(@"**** %s [Line %d] \t w:%.4f \t h:%.4f", #__size, __LINE__, __size.width, __size.height);
#define uPoint(__point) NSLog(@"**** %s [Line %d] \t x:%.4f \t y:%.4f", #__point, __LINE__, __point.x, __point.y);