如何在 Table View 右上角设置 UIImage。我正在使用表格视图和显示联系人列表做 iPad 应用程序。单击联系人表格视图时要显示右侧详细信息...在这里我想放置一张在表格视图中选择的图像...
任何人都给我这个建议
谢谢
在这里查看我的代码
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
![enter image description here][1]
UIImageView *imv = [[UIImageView alloc]initWithFrame:CGRectMake(347, 0.5, 14, 48)];
imv.image=[UIImage imageNamed:@"activeBg.png"];
[cell.selectedBackgroundView addSubview:imv];
}
预期输出:
我的输出:
使用的图像:
更改 x 值后查看此输出: