我創建了一個桌面視圖和自定義桌面視圖覆蓋整個表格視圖cell.everything工作正常,但問題是我得到相鄰的tableview cells.i已經連設置的tableview分隔符樣式null.but依然沒能除去兩個相鄰cells.below之間的白色畦是代碼桌面單元格之間的差距,而在桌面單元格中分配圖像
代碼用於分配表視圖圖像..
- (void)viewDidLoad {
[super viewDidLoad];
[self.tableview1 setSeparatorStyle:UITableViewCellSeparatorStyleNone];
[self.tableview1 setAllowsSelectionDuringEditing:TRUE];
}
UIImage *image=[UIImage imageNamed:@"listy.png"];
UIImageView *imageView1=[[UIImageView alloc]initWithImage:image];
imageView1.contentMode=UIViewContentModeScaleToFill;
cell.backgroundView=imageView1;
[imageView1 release];
NSString *imagefile1 = [media1 objectAtIndex:indexPath.row];
NSString *escapedURL=[imagefile1 stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding];
mi.url=[NSURL URLWithString:escapedURL];
[objMan manage:mi];
cell.accessoryType=UITableViewCellAccessoryDisclosureIndicator;
cell.textLabel.text=[story objectAtIndex:indexPath.row];
cell.textLabel.backgroundColor=[UIColor clearColor];
cell.detailTextLabel.text=[descriptiondesc objectAtIndex:indexPath.row];
cell.detailTextLabel.backgroundColor=[UIColor clearColor];
return cell;
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 77;
}
你的細胞的大小是多少?圖像的大小是多少? – Peres
其77 ..我更新了我的答案 – kingston
嘗試把其他圖像,如果它正在改變。 (它很難看到一個黑色的圖像,嘗試與字母圖像) – Peres