How to remove arrow in UITableView

后端 未结 6 572
终归单人心
终归单人心 2020-12-31 02:35

I am working on a UITableView. Please tell me how to remove the arrow button displayed in the each and every row?

6条回答
  •  北海茫月
    2020-12-31 03:11

    In your -tableView:cellForRowAtIndexPath:, set the accessoryType property of your UITableViewCell to UITableViewCellAccessoryNone, which is the default FYI.

提交回复
热议问题