这个引用或代码是错误还是错误?

时间:2010-12-31 18:43:33

标签: ios nsdate

I copied some text from NSDate Reference as below, please check Return Value, 
it is said the format will be in YYYY-MM-DD HH:MM:SS ±HHMM, but I got as below 
in my app, so the reference is mistake? or code in mistake?

Saturday, January 1, 2011 12:00:00 AM Japan Standard Time
or
2011年1月1日土曜日0時00分00秒 日本標準時

descriptionWithLocale:
Returns a string representation of the receiver using the given locale.

- (NSString *)descriptionWithLocale:(id)locale
Parameters
locale
    An NSLocale object.

    If you pass nil, NSDate formats the date in the same way as the description
method.

    On Mac OS X v10.4 and earlier, this parameter was an NSDictionary object. 
If you pass in an NSDictionary object on Mac OS X v10.5, NSDate uses the 
default user locale—the same as if you passed in [NSLocale currentLocale].

Return Value
    A string representation of the receiver, using the given locale, or if the
locale argument is nil, in the international format YYYY-MM-DD HH:MM:SS ±HHMM,
where ±HHMM represents the time zone offset in hours and minutes from GMT (for
example, “2001-03-24 10:45:32 +0600”)

1 个答案:

答案 0 :(得分:0)

如果您正在寻找YYYY-MM-DD HH:MM:SS±HHMM格式的日期,请为该区域传递“nil”;否则,传递你的语言环境。