How can I use single image for two cell as shown in the image
You can place uibutton instead of your labels as compromise. (on the image below you can see how to do that)
Add your navigation logic as buttons' selectors in
- (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; }
Copyright © 2021 Jogjafile Inc.
You can place uibutton instead of your labels as compromise. (on the image below you can see how to do that)