如果== 0,NSDateFormatter将返回空白分钟

时间:2012-10-22 16:08:26

标签: macos cocoa nsdate nsdateformatter

代码:

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"m"];
NSLog(@"%@", [formatter stringFromDate:myDate]);

输出:0如果myDate的分钟值为0

这是正常的,但如果分钟设置为0如何输出空白值而不是0

1 个答案:

答案 0 :(得分:1)

NSString * newString = [myString stringByReplacingOccurrencesOfString:@"0" withString:@""];