本文介绍了iPhone操作系统:如何为特定日期创建NSDate?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

看起来像一个简单的东西,但我似乎找不到一个办法。

Seems like a simple thing but I can't seem to find a way to do it.

看到一些不同的方法将是很好的。 p>

It would be great to see a couple different methods.

推荐答案

@ Chuck的答案是正确的,并引导我到以下代码。我想分享:

@Chuck's answer is correct, and lead me to the following code. Thought I'd share:

NSDateComponents *comps = [[NSDateComponents alloc] init];
[comps setDay:10];
[comps setMonth:10];
[comps setYear:2010];
NSDate *date = [[NSCalendar currentCalendar] dateFromComponents:comps];

这篇关于iPhone操作系统:如何为特定日期创建NSDate?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-24 04:19