views:

99

answers:

2

i have a tableview with multiple rows.row values dynamically changes every 2 secs except last row .i like to add a rotating view in the last row. how to add a animating view in the last row? how to rotate a view inside a tableviewcell? i'm not looking for a UIActivityindicator. i want to rotate my view around z axis.

+1  A: 

If you're looking at how to show a UIActivityIndicator inside a table view cell, then the solution is simple.

In your table view cell subclass create an instance of UIActivityIndicator and add it as a subview.

Jasarien
A: 

You could add a subview to the cell view and present it with presentModalViewController although I am not sure if this will work in a non-fullscreen scenario.

mga