UITableView Edit mode

后端 未结 5 986
逝去的感伤
逝去的感伤 2020-12-24 05:13

I have UITableView and I am trying to load it by default in edit mode. The problem is when I this line table.editing=TRUE; my rows disappear, I im

5条回答
  •  离开以前
    2020-12-24 06:07

    as Anish pointed to using

    [tableView setEditing: YES animated: YES]; 
    

    But you need to have it in viewWillAppear view event to make it work.

提交回复
热议问题