Is there an easy way delay a method call for 1 second?
I have a UIImageView that reacts on a touch event. When the touch is detected, some animations ha
UIImageView
You can use the perform selector for after the 0.1 sec delay method is call for that following code to do this.
[self performSelector:@selector(InsertView) withObject:nil afterDelay:0.1];