uitableview中显示图片,如何将图片自动撑满一行? |
|
20分 |
指定column的background image成图片
|
6分 |
要么调整图片的大小,要么调整cell的大小,指定background即可
|
5分 |
设置backgroundView,具体代码如下:
UIImageView* vwimg = [[ UIImageView alloc] initWithFrame: cellFrame]; vwimg.image = [UIImage imageNamed: @”round.png”];; cell.backgroundView = vwimg; |