如何删除UITableView中的箭头

时间:2010-04-01 09:27:52

标签: ios objective-c uitableview

我正在研究UITableView。请告诉我如何删除每一行中显示的箭头按钮?

6 个答案:

答案 0 :(得分:32)

-tableView:cellForRowAtIndexPath:中,将UITableViewCell的accessoryType属性设置为UITableViewCellAccessoryNone,,这是默认的FYI

答案 1 :(得分:13)

如果您正在使用界面构建器,只需选择您的单元格并将accessory设置为none

enter image description here

答案 2 :(得分:3)

//Write following code into your program


-(UITableViewCellAccessoryType)tableView:(UITableView *)tv accessoryTypeForRowWithIndexPath (NSIndexPath *)indexPath {

    return UITableViewCellAccessoryNone;
}

//Create a table for different section of app

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

 cell.accessoryType = UITableViewCellAccessoryNone;

}

// VKJ

答案 3 :(得分:2)

对于c#user:

UITableViewCell cell = new UITableViewCell(); 

cell.Accessory = UITableViewCellAccessory.None;

答案 4 :(得分:1)

适用于Swift 3

cell.accessoryType = UITableViewCellAccessoryType.none

答案 5 :(得分:0)

对于Swift

在您之前添加以下cellForRowAtIndexPath方法的结尾 return

    cell.accessoryType = UITableViewCellAccessoryType.None

它完美无缺!!