Wordpress サイトから RSS フィードを読み取る iOS アプリがあります。アプリは投稿のタイトルを表示し、サムネイル画像もキャッシュします。また、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];`