获取系统时间

 

NSDateFormatter *formatter = [[[NSDateFormatter alloc] init] autorelease];
	[formatter setDateFormat:@"YYYY-MM-dd hh:mm:ss"];
	NSString*locationTimeString=[formatter stringFromDate: [NSDate date]];



用这种方法获取的时间, 如果手机不是用时间24小时设置的话, 那么这个方法获取的小时就会产生混淆,可以用
http://zani.iteye.com/blog/1182401 方法获取

你可能感兴趣的:(系统时间)