Reputation: 11
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.
Upvotes: 0
Views: 214
Reputation: 1970
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.
Upvotes: 0
Reputation: 58448
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.
Upvotes: 1