iOS 从 RSS Feed 获取日期字符串

标签 ios xcode rss ios6 nsattributedstring

我有一个 XML 解析器,它使用 RaptureXML 获取每个项目并将其显示在表格单元格中。我已经可以获取标题和描述,但我似乎不知道如何获取日期。

这是我到目前为止的日期:

NSString* dateString;

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"EEEE MMMM d, YYYY"];
dateString = [formatter stringFromDate:self.pubDate];


[articleAbstract appendAttributedString:
 [[NSAttributedString alloc] initWithString: dateString]
 ];

我一直在调试器中显示这个:

'NSInvalidArgumentException', reason: 'NSConcreteAttributedString initWithString:: nil value'

我不知道我做错了什么。这是完整的代码:

RSSItem.h

#import <Foundation/Foundation.h>

@interface RSSItem : NSObject

@property (strong, nonatomic) NSString* title;
@property (strong, nonatomic) NSString* description;
@property (strong, nonatomic) NSURL* link;
@property (strong, nonatomic) NSAttributedString* cellMessage;
@property (strong, nonatomic) NSDate* pubDate;
@property (strong, nonatomic) NSString* dateString;

@end

RSSItem.m

#import "RSSItem.h"
#import "GTMNSString+HTML.h"

@implementation RSSItem

-(NSAttributedString*)cellMessage

{ 如果 (_cellMessage!=nil) 返回 _cellMessage;

NSDictionary* boldStyle = @{NSFontAttributeName: [UIFont fontWithName:@"Helvetica-Bold" size:16.0]};
NSDictionary* normalStyle = @{NSFontAttributeName: [UIFont fontWithName:@"Helvetica" size:16.0]};

NSMutableAttributedString* articleAbstract = [[NSMutableAttributedString alloc] initWithString:self.title];

[articleAbstract setAttributes:boldStyle
                         range:NSMakeRange(0, self.title.length)];


[articleAbstract appendAttributedString:
 [[NSAttributedString alloc] initWithString:@"\n\n"]
 ];

// Parse for date

NSString* dateString;

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"EEEE MMMM d, YYYY"];
dateString = [formatter stringFromDate:self.pubDate];


[articleAbstract appendAttributedString:
 [[NSAttributedString alloc] initWithString: dateString]
 ];

[articleAbstract appendAttributedString:
 [[NSAttributedString alloc] initWithString:@"\n\n"]
 ];

int startIndex = [articleAbstract length];

NSString* description = [NSString stringWithFormat:@"%@...", [self.description substringToIndex:100]];
description = [description gtm_stringByUnescapingFromHTML];

[articleAbstract appendAttributedString:
 [[NSAttributedString alloc] initWithString: description]
 ];

[articleAbstract setAttributes:normalStyle
                         range:NSMakeRange(startIndex, articleAbstract.length - startIndex)];

_cellMessage = articleAbstract;
return _cellMessage;

}

@end

编辑:这是我的 RSS 加载器

#import "RSSItem.h"

#define kBgQueue dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)

@implementation RSSLoader

-(void)fetchRssWithURL:(NSURL*)url complete:(RSSLoaderCompleteBlock)c
{
dispatch_async(kBgQueue, ^{

    //work in the background
    RXMLElement *rss = [RXMLElement elementFromURL: url];
    RXMLElement* title = [[rss child:@"channel"] child:@"title"];        
    RXMLElement* pubDate = [[rss child:@"channel"] child:@"pubDate"];

    NSString *usableDate = [pubDate];       

    NSArray* items = [[rss child:@"channel"] children:@"item"];

    NSMutableArray* result = [NSMutableArray arrayWithCapacity:items.count];

    //more code
    for (RXMLElement *e in items) {

        //iterate over the articles
        RSSItem* item = [[RSSItem alloc] init];
        item.title = [[e child:@"title"] text];            
        item.pubDate = usableDate
        item.description = [[e child:@"description"] text];
        item.link = [NSURL URLWithString: [[e child:@"link"] text]];
        [result addObject: item];
    }

    c([title text], result);
});

}

有人可以帮我正确解析我的日期吗?

最佳答案

看起来 stringFromDate 返回 nil。

如果您的意思是 YYYY 是年份,那是不正确的,您应该改用 yyyy。但我不认为日期格式有问题。也许 pubDate 为零?

关于iOS 从 RSS Feed 获取日期字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13556884/

相关文章:

ios - 包含头文件的问题

python - 在 Python 中使用 Elementtree 解析 RSS

java - Android:如何从 RSS feed 获取值并从另一个 RSS feed 中的值减去它

ios - 当包含 firebase 时,其 View 不在窗口层次结构中的 LoginViewController 上的 UIAlertController

ios - EKEventStore编程Xcode iOS异步搜索

ios - 应用程序在后台时深层链接不起作用?

python - 不要在 Xcode 4 项目导航器中显示 .pyc 文件

ios - 推送通知 iOS - 提示应用程序检查资源并在适当时提供本地通知

iOS 不应在 HTTP POST 中的 NSURLSession 的 NSURL 中添加扩展名

ios - 使用 CABasicAnimation 移动时无法使用 UIButton