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
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.