I'm trying to change my UIAlertViews to UIAlertControllers. I set up this action for it:
UIAlertAction *undoStopAction = [UIAlertAction actionWithTitle:@"Undo Stop"
style:UIAlertActionStyleDefault
handler:^(UIAlertAction *action) {
[self undoStop];
}];
But, the handler doesn't run until about a second after the action is tapped. Is there any way to speed this up?