tags:

views:

51

answers:

1

Hi, In iphone application I have a table view having 5 rows. first row is for showing the decreasing digit like time in second. i.e 30,29,28.......0. this is for user to choose a action from table view within 30 seconds. how this will implement?

Thanks, Aaryan

+1  A: 

Use an NSTimer and update that row every second. Invalidate the NSTimer when it hits 0.

kiyoshi