How to remove arrow in UITableView

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

    For Swift

    Add following to end of your cellForRowAtIndexPath method just before return.

        cell.accessoryType = UITableViewCellAccessoryType.None
    

    it just works perfect!!

提交回复
热议问题