我需要帮助。我在 UIlabel 中有这个日期,格式为 04/26/2013。如何将其重新格式化为 04.26.2013 ?我已经有以下代码:
UILabel *timelabel = [[UILabel alloc] initWithFrame:CGRectMake(xx, xx, xx, xx)];
[timelabel setText:dateToday];
dateToday
值为04/26/2013
。
我需要帮助。我在 UIlabel 中有这个日期,格式为 04/26/2013。如何将其重新格式化为 04.26.2013 ?我已经有以下代码:
UILabel *timelabel = [[UILabel alloc] initWithFrame:CGRectMake(xx, xx, xx, xx)];
[timelabel setText:dateToday];
dateToday
值为04/26/2013
。
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateFormat:@"MM.dd.yyyy"];
NSString *stringFromDate = [formatter stringFromDate:[NSDate date]];
NSLog(@"today : %@", stringFromDate);
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"MM.dd.yyyy"];
NSDate *date = [dateFormatter dateFromString:dateToday];
if(date != nil) {
NSString *formattedDateString = [dateFormatter stringFromDate:date];
[timelabel setText:formattedDateString];
} else {
[timelabel setText:@"Invalid Date"];
}
添加了错误检查。始终检查输入字符串是否是有效的日期字符串。
timelabel.text = [dateToday stringByReplacingOccurrencesOfString:@"/" withString:@"."];