我的table view
中有4行作为主屏幕。首先,我想禁用滚动细胞up
和down
。其次,我想在第4个单元格中添加徽标图像。
有人能建议我这样做吗?
提前致谢。
答案 0 :(得分:5)
禁用滚动使用
tableView.scrollEnabled = NO;
和cellForRowAtIndexPath方法
在创建单元格后使用此代码段
if(indexPath.row == 3) {
cell.imageView.image = [UIImage imageNamed:@"nameOfImage.png"];
}
答案 1 :(得分:0)
self.tableView.scrollEnabled = NO
要向您的单元格添加图片,请转到cellForRowAtIndexPath
并创建UIImage
,然后将它们作为子视图添加到您的单元格中。
if (indexPath.row ==3)
// allocate your image 1
[cell.contentView addSubview: image1];
// and so on.
修改:
试试吧。
UIImageView *sampleImage = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"sample.jpg"]] autorelease];
sample.frame = CGRectMake(20, 10, 75, 75);
[cell addSubview:sampleImage];