How can I flip an iOS UITableViewCell?

后端 未结 4 942
走了就别回头了
走了就别回头了 2020-12-29 16:45

I have a tableview with a number of cells. Each cell has a little info \"i\" button, which I would like the user to be able to click in order to edit the information in that

4条回答
  •  梦毁少年i
    2020-12-29 17:36

    I can't see why you couldn't use [UIView animateWithDuration...].

    You could have two UIViews in each cell who's scale you animate. The first would be visible and the second would be hidden

    At the half-way point of the animation, simply hide the first UIView and unhide the second and continue the animation from there.

提交回复
热议问题