NSDateFormatter问题

发布于 2024-09-11 23:37:40 字数 95 浏览 5 评论 0原文

嘿,我的日期是“7/30/2010”。我如何将其仅打印为月份和日期,即。 “7/30” 我尝试使用 NSFormatter 但它打印我当前的日期,而不是我的数据库中存在的日期。

hey i have my date as "7/30/2010". How do i print it as only the Month and Date ie. "7/30"
I tried using NSFormatter but it prints my current date and not which is present in my database.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

对你而言 2024-09-18 23:37:40
NSDate *date = dateFromYourDataBase;
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"M/dd"];
NSLog(@"%@", [formatter stringFromDate:date]);
[formatter release];
NSDate *date = dateFromYourDataBase;
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"M/dd"];
NSLog(@"%@", [formatter stringFromDate:date]);
[formatter release];
诺曦 2024-09-18 23:37:40

您可以为 NSDate实用方法 >。

这是一个示例标头:

@interface NSDate (Utilities)

+ (NSDate *) customDateForString:(NSString *)dateString;
+ (NSDateFormatter *) customDateFormatter;

@end

实现:

@implementation NSDate (Utilities)

static NSDateFormatter *customDateFormatter = nil;

+ (NSDateFormatter *) customDateFormatter {
    // Example: 7/30
    if (!customDateFormatter) {
        customDateFormatter = [[NSDateFormatter alloc] init];
        [customDateFormatter setFormatterBehavior:NSDateFormatterBehavior10_4];
        [customDateFormatter setLocale:[[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"] autorelease]];

        // cf. http://unicode.org/reports/tr35/tr35-6.html#Date_Format_Patterns
        [customDateFormatter setDateFormat:@"M/d"];
    }  
    return customDateFormatter;
}

+ (NSDate *) customDateForString:(NSString *)dateString {
    return [[self customDateFormatter] dateFromString:dateString];
}

@end

每当您需要解析日期字符串时,您都可以像这样调用它:

NSLog(@"Parsed date: %@", [NSDate customDateForString:@"7/30/2010"]); // Parsed date: 7/30

You could add some utility methods for NSDate.

Here is a sample header:

@interface NSDate (Utilities)

+ (NSDate *) customDateForString:(NSString *)dateString;
+ (NSDateFormatter *) customDateFormatter;

@end

The implementation:

@implementation NSDate (Utilities)

static NSDateFormatter *customDateFormatter = nil;

+ (NSDateFormatter *) customDateFormatter {
    // Example: 7/30
    if (!customDateFormatter) {
        customDateFormatter = [[NSDateFormatter alloc] init];
        [customDateFormatter setFormatterBehavior:NSDateFormatterBehavior10_4];
        [customDateFormatter setLocale:[[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"] autorelease]];

        // cf. http://unicode.org/reports/tr35/tr35-6.html#Date_Format_Patterns
        [customDateFormatter setDateFormat:@"M/d"];
    }  
    return customDateFormatter;
}

+ (NSDate *) customDateForString:(NSString *)dateString {
    return [[self customDateFormatter] dateFromString:dateString];
}

@end

Whenever you need to parse a date string, you would call it like so:

NSLog(@"Parsed date: %@", [NSDate customDateForString:@"7/30/2010"]); // Parsed date: 7/30
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文