UITableView cell animate background
Posted
by psychotik
on Stack Overflow
See other posts from Stack Overflow
or by psychotik
Published on 2010-04-11T09:22:33Z
Indexed on
2010/04/11
9:23 UTC
Read the original article
Hit count: 285
I have a UITableView with a bunch of rows.
When some action occurs, I want to animate the background of a cell. I just want to make it grey and then fade it back to the default in .5 seconds. Is my only option to set the background and call [tableView beginUpdates]
followed by [tableView endUpdates]
and then set a timer to clear the background again, or is there some more fundamental animation technique I can use here?
© Stack Overflow or respective owner