I want to create a kind of touch recorder. I have an array with buttons and in forin i want to my app click button every second.
for(UIButtons *button in self.tmpRecord) {
        [button sendActionsForControlEvents: UIControlEventTouchUpInside];
        //wait a second
}
How can I do that?
 
     
     
     
    