How to remove arrow in UITableView

后端 未结 6 543
终归单人心
终归单人心 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:23

    For c# user :

    UITableViewCell cell = new UITableViewCell(); 
    
    cell.Accessory = UITableViewCellAccessory.None;
    

提交回复
热议问题