1

UIDatePickerModeDateAndTime以格式返回输出

2012-12-20 07:15:18 +0000.

如何+0000从输出中删除?

我想截图,但我的声誉还不够,我希望它能解决我的问题。

4

4 回答 4

1

用一个NSDateFormatter

- (IBAction)dateChanged:(UIDatePicker *)sender {
    NSDate *date = sender.date;
    NSDateFormatter *df = [[NSDateFormatter alloc] init];
    [df setDateStyle:NSDateFormatterShortStyle];   // if you want to show the date to the user
    [df setTimeStyle:NSDateFormatterShortStyle];   // if you want to show the date to the user
    // [df setDateFormat:@"yyyy-MM-dd HH:mm:ss"];  // if you want to use the date for your model

    NSString *dateString = [df stringFromDate:date];
    NSLog(@"%@", dateString);
}

如果您想向用户显示日期,请使用setDateStyle:and setTimeStyle:,因为他们了解区域设置并以正确的格式生成输出。如果您只需要该日期用于后端(例如创建文件名),请使用setDateFormat:.

于 2012-12-20T07:30:34.697 回答
0

有很多解决方案。其中一些是:

1) 用空字符串替换 + 0000

2)切片输出直到(长度 - 5)

它需要创造力来开发更多的解决方案。

于 2012-12-20T07:27:40.033 回答
0

这是代码

NSString *calDate = @"2011-11-11 21:56:38 +0000";

NSDate *date = [[[NSDate alloc] init] retain];

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];

[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss Z"];  

//                                   right here    ^

date = [dateFormatter dateFromString:calDate];

NSLog(@"date:%@", date);

输出:

2012-01-03 20:14:15.258 Craplet[38753:707] date:2011-11-11 21:56:38 +0000

没有 Z:

[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];

它输出:

2012-01-03 20:16:10.456 Craplet[38885:707] date:(null)

如果格式不能与日期字符串匹配,则返回 nil

于 2012-12-20T07:30:40.067 回答
0

使用这种方式:

NSDateFormatter * dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyy-MM-dd HH:mm:ss"];
NSDate *today = [NSDate date];
NSString *dateString =[dateFormatter stringFromDate:today];
NSLog(@"Date is: %@",dateString);

输出:

Date is: 2012-12-20 12:58:58
于 2012-12-20T07:34:15.913 回答