iOS 获得现在的时间代码
一, 代码。 - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. //获得现在的时间 [self currentTime]; } #pragma -mark -functions //计算现在的时间 - (void)currentTime { //时间格式 NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [
用户评论