将NSDict转换为NSDate

时间:2013-02-08 08:37:59

标签: ios date

我正在尝试将NSDict转换为NSDate。任何人都可以提出一些例子。

提前致谢。

1 个答案:

答案 0 :(得分:2)

NSSString *str = [dict objectForKey:@"billdate"];
NSDateFormater *f = [[NSDateFormatter alloc] init];

NSLocale *usLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];
f.locale = usLocale;
f.dateFormat = @"MM/dd/yyyy"; // The format string uses the format patterns from the Unicode Technical Standard #35

NSDate *date = [f dateFromString:str];