我想在iPhone上的TableView的每一行的右侧添加一个箭头。任何想法如何做到这一点?
答案 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
}
每行右侧会显示一个蓝色箭头。