3
我一直在使用這種方法將常規NSString對象轉換爲NSDate,但嘗試將更新提交給Apple並且它被拒絕。在iOS中執行此操作的另一種方法是什麼?在iOS上將NSString轉換爲NSDate的正確方法?
NSString *date_str = @"2011-08-12T12:20:00Z";
NSDate *the_date = [NSDate dateWithNaturalLanguageString:date_str locale:[[NSUserDefaults standardUserDefaults] dictionaryRepresentation]];
在此先感謝!