在调用期间,tableView:cellForRowAtIndexPath:
我正在调用此函数将日期格式化为时间:
- (NSString *)_formatDate:(NSDate *)date withString:(NSString *)string {
NSLocale *locale = [NSLocale currentLocale];
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
NSString *dateFormat = [NSDateFormatter dateFormatFromTemplate:string options:0 locale:locale];
[formatter setDateFormat:dateFormat];
[formatter setLocale:locale];
return [formatter stringFromDate:date];
}
我正在传递行的日期以及字符串@"HH:mm"
。
不幸的是,这似乎落后于我的表格视图。类似的事情发生在我正在格式化为完整日期的部分标题中。
有什么理由应该如此落后于我的应用程序吗?这些电话是否特别密集?
谢谢
汤姆