gpt4 book ai didi

iphone - 日期未出现在UILabel中

转载 作者:行者123 更新时间:2023-12-01 19:21:48 25 4
gpt4 key购买 nike

此代码有什么问题?

    NSString *strTest = @"Sun Apr 12 23:29:24 +0000 2009";
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"MM/dd/yy"];
NSDate *createdAtFormatted = [dateFormatter dateFromString:strTest];
self.createdAt.text = [dateFormatter stringFromDate:createdAtFormatted];

self.createdAt是一个UILabel,它保持为空。为什么?

当尝试使用dateWithNaturalLanguageString时,我得到:

最佳答案

您的日期格式化程序的日期格式与strTest字符串中的日期格式不匹配。

NSString *strTest = @"Sun Apr 12 23:29:24 +0000 2009";
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
NSLocale *loc = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"]; // so the formatter recognizes english names for months and days
[dateFormatter setLocale:loc];
[loc release]; // remove if using ARC
[dateFormatter setDateFormat:@"EEE MMM d HH:mm:ss ZZZZ yyyy"];
NSDate *createdAtFormatted = [dateFormatter dateFromString:strTest];
NSLog(@"got %@", createdAtFormatted);

格式符说明符可以在 here中找到。

关于iphone - 日期未出现在UILabel中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10048120/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com