我有一个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];`
答案 0 :(得分:0)
您必须实现自定义子类UITableViewCell
,并在其中包含两个附加属性rssDate
和authorName
。
如果您已经在使用UITableViewCell
自定义子类,请考虑添加这两个属性(可能是UILabel
)
修改强>
要让RSSDate
和AuthorName
在XML
中查看其代码,并采用与解析Feed Title
相同的方式进行解析。没有人能告诉你,如何在不看到XML结构的情况下解析这两者。