Highlight cell after modalview has been dissmissed
- by Trj
I have a table view and a toolbar where items can be added to the table view. The addItemView is presented modally.
Now, when i dismiss the modal view i would like to indicate which cell was added. For now i have used the setSelected and deselct methods on UITableView, but they are fired too quickly. What would be a good approach to give the user a good indication on which cell was added?
Could i add a timer which prevented the setSelected method from firing right away?