我正在尝试创建一个显示RSS源的应用程序,将文本和图像放入表格中,但我真的很喜欢它!
我找到了一个非常好的[示例代码项目] [1],我真的可以推荐 - 但是我很喜欢让它在tablecells中显示图像而不仅仅是文本
如果有任何帮助,我会非常满意!!
由于
答案 0 :(得分:0)
在表格的单元格中添加UIImageView,并将其image
属性设置为您的图片。
您希望在cellForRowAtIndexPath:方法中执行此操作:
-(UITableViewCell *)tableView:(UITableView *) tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *MyIdentifer = @“MyIdentifier”;
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if(cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero
reuseIdentifier:MyIdentifier] autorelease];
UIImageView *imgView = [[UIImageView alloc] initWithFrame: CGRectMake(3,3,75,75)];
imgView.tag = 7;
}
[cell setText: (NSString*)[yourTextArray objectAtIndex: indexPath.row];
UIImageView *theImgView = (UIImageView*)[cell viewWithTag: 7];
theImgView.image = (UIImage*)[yourImageArray objectAtIndex: indexPath.row]
return cell;
}
查看this article以获取异步方法。