3
我想在iPhone上的TableView中的每一行右邊添加一個箭頭。任何想法如何做到這一點?如何在iPhone上的TableView的行右側添加圖像?
我想在iPhone上的TableView中的每一行右邊添加一個箭頭。任何想法如何做到這一點?如何在iPhone上的TableView的行右側添加圖像?
我的工作了:
-(UITableViewCellAccessoryType)tableView:(UITableView *)tableView
accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath
{
return UITableViewCellAccessoryDetailDisclosureButton;
}
-(void)tableView:(UITableView *)tableView
accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath
{
//add action here
}
一個藍色箭頭會顯示每行的權利。
你的意思是許多應用程序有默認的箭頭(雪佛龍)?
UITableViewCell *myCell = ...; //GET a cell from somewhere.
myCell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;