如何将单个图像用于两个单元格,如图所示
答案 0 :(得分:0)
您可以放置uibutton而不是标签作为妥协。 (在下图中你可以看到如何做到这一点)
将导航逻辑添加为按钮'
中的选择器- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:<#@"reuseIdentifier"#> forIndexPath:indexPath];
// Configure the cell...
// add action manually for your button
cell.FirstSegueButton addTarget:self action:@selector(FirstSegueButton:) forControlEvents:UIControlEventTouchUpInside];
return cell;
}