Can you animate a height change on a UITableViewCell when selected?

前端 未结 21 1407
天涯浪人
天涯浪人 2020-11-22 04:41

I\'m using a UITableView in my iPhone app, and I have a list of people that belong to a group. I would like it so that when the user clicks on a particular pers

21条回答
  •  佛祖请我去吃肉
    2020-11-22 05:01

    Instead of beginUpdates()/endUpdates(), the recommended call is now:

    tableView.performBatchUpdates(nil, completion: nil)
    

    Apple says, regarding beginUpdates/endUpdates: "Use the performBatchUpdates(_:completion:) method instead of this one whenever possible."

    See: https://developer.apple.com/documentation/uikit/uitableview/1614908-beginupdates

提交回复
热议问题