objective c - iPhone deselect row after delay -
i wondering if aware of way deselect table view after delay?
i using deselectrowatindexpath
method. want highlighting show second before deselecting it.
thanks!
i able using [tableview deselectrowatindexpath:indexpath animated:yes];
another way be:
[self performselector:@selector(deselect:) withobject:self afterdelay:0.33];
and create method deselect
calls deselectrowatindexpath
Comments
Post a Comment