本文介绍了如何在iOS编程中获得时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想根据时间得到随机数。你如何获得iPhone的iOS编程当前时间?
I wanted to get random numbers according to time. How do you get the current time in iOS Programming for the iPhone?
推荐答案
NSDate * now = [ [NSDate alloc] init];
OR NSDate * now = [NSDate date];
默认情况下,NSDate对象将初始化为当前日期。
NSDate *now = [[NSDate alloc] init];
OR NSDate *now = [NSDate date];
an NSDate object by default will be initialised to the current date.
这篇关于如何在iOS编程中获得时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!