如何在iPhone上的TableView中向行的右侧添加图像?

时间:2009-02-26 06:08:24

标签: iphone image uitableview

我想在iPhone上的TableView的每一行的右侧添加一个箭头。任何想法如何做到这一点?

2 个答案:

答案 0 :(得分:4)

你的意思是许多应用程序的默认箭头(雪佛龙)?

UITableViewCell *myCell = ...; //GET a cell from somewhere.
myCell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

答案 1 :(得分:1)

我刚刚解决了这个问题:

-(UITableViewCellAccessoryType)tableView:(UITableView *)tableView 
        accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath
{
    return UITableViewCellAccessoryDetailDisclosureButton;
}

-(void)tableView:(UITableView *)tableView 
accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath
{
    //add action here
}

每行右侧会显示一个蓝色箭头。