In iOS is there anyway to prevent a UIView containing multiple buttons (siblings) from being simultaneously from being touched? For instance, two non-overlapping buttons that ar
I have tried both multiTouchEnabled and exclusiveTouch but unfortunately none of them workout for me.I have tried the following code worked perfectly.
BOOL ClickedBool;
if(ClickedBool==TRUE) { return; } else { ClickedBool=TRUE; }