iOS开发-三种倒计时的写法
1.通过NSThread的performSelectorInBackground; 2.通过定时器,属于比较简单的写法; 3.通过GCD中的dispatch_source;先说第一种:#import "ViewController.h"@interface ViewController (){ int _count; UILabel *_label;}@end@implem