我正在尝试将NSDict转换为NSDate。任何人都可以提出一些例子。
提前致谢。
答案 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];