如何显示RSS日期和时间iOS中解析器xml的作者姓名

时间:2013-04-02 12:24:03

标签: ios xml rss

我有一个iOS应用程序,可以从我的Wordpress网站上读取RSS源。该应用程序显示帖子标题,并缓存缩略图图像。我还想在我的iOS应用程序的RSS提要表中显示日期和作者姓名..我该怎么做?

以下是应用程序如何缓存帖子标题:

postTitle = [[UILabel alloc]init];
postTitle.numberOfLines = 3;
postTitle.backgroundColor = [UIColor clearColor];
postTitle.textColor = [UIColor blackColor];
postTitle.font = [UIFont fontWithName:@"Helvetica-Bold" size:15];
postTitle.frame = CGRectMake(30, 20, 200, 65 );

cell.layer.borderColor = [[UIColor blackColor]CGColor];
cell.layer.borderWidth = 2.0f;

postTitle.text = [[self.parseResults objectAtIndex:indexPath.row]objectForKey:@"title"];
[cell.contentView addSubview:postTitle];`

1 个答案:

答案 0 :(得分:0)

您必须实现自定义子类UITableViewCell,并在其中包含两个附加属性rssDateauthorName

如果您已经在使用UITableViewCell自定义子类,请考虑添加这两个属性(可能是UILabel

修改

要让RSSDateAuthorNameXML中查看其代码,并采用与解析Feed Title相同的方式进行解析。没有人能告诉你,如何在不看到XML结构的情况下解析这两者。