摘要: NSLog的实现 void NSLog(NSString* format, ...) { va_list ap; va_start(ap, format); NSLogv(format, ap); va_end(ap); } NSLogv()函数主要拼接了系统打印时间、线程信息以及要打印函数传入的参 阅读全文
posted @ 2021-01-13 21:03 ITRyan 阅读(129) 评论(0) 推荐(0)