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

Popular posts from this blog

jQuery clickable div with working mailto link inside -

java - Getting corefrences with Standard corenlp package -

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -