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