0

我有一个 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];`
4

1 回答 1

0

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

如果您已经在使用UITableViewCell自定义子类,请考虑添加这两个属性(也许,作为 a UILabel

编辑

获取RSSDateAuthorName查看他们的标签,XML并以与解析提要相同的方式进行解析Title。没有人可以告诉您,如何在不查看您的 XML 结构的情况下解析这两者。

于 2013-04-02T12:38:50.717 回答