Current situation: I have implemented drag-and-drop functionality feature where users can drag items from one place and drop on any allowed row in UITableView. For example, users can drag item and dropped only on first cell or first 3 cells. Other cells are invalid. This is working fine.
Question: With my implementation users are confused about where to drop item. I want to blink or highlight all cells where users can drop an item on demand(I mean first 3 cells would start blinking or highlighted when user has item to drop). In short is there anyway I can manually blink multiple cells whenever required and reset them to their original state later on.