如何將圖像比uitableviewcell本身放大爲子視圖或背景視圖。如何在大於單元格和桌面視圖的UItableviewcell上添加圖像
我需要顯示單元格被選中時的背景圖片。
編輯: 文件附看到突出顯示的行:箭頭比的tableview本身更大,它比小區更大
如何將圖像比uitableviewcell本身放大爲子視圖或背景視圖。如何在大於單元格和桌面視圖的UItableviewcell上添加圖像
我需要顯示單元格被選中時的背景圖片。
編輯: 文件附看到突出顯示的行:箭頭比的tableview本身更大,它比小區更大
在的tableView數據源的方法
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
你可以這樣做:
UIImageView * imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"image_background.png"]];
cell.selectedBackgroundView = imageView;
當選中單元格時,其背景設置爲imageView
。
如果你不使用任何背景圖片爲您UITableViewCell
比使用delegate method of
的UITableView:如果您使用的背景圖片爲您UITableViewCell
比cellForRowAtIndexPath:
UIImageView *selBGView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"urimage.png"]];
cell.selectedBackgroundView = selBGView;
請參閱我的編輯以上.. .. ge附上 – Jatin
使用'
我知道如何做到以上.....但我想圖像重疊整個單元格,並且其寬度比整個單元格更大 – Jatin
請參閱上面的編輯..附圖 – Jatin