TagUIView flashing effect

How to make UIView blinking (or flashing) on iphone?

H

Use this : - (void)blinkAnimation:(NSString *)animationId finished:(BOOL)finished target:(UIView *)target {     if (shouldContinueBlinking) {         [UIView beginAnimations:animationId context:target];         [UIView setAnimationDuration:0.5f];         [UIView setAnimationDelegate:self];         [UIView setAnimationDidStopSelector:@selector(blinkAnimation:finished:target:)];         if ([target...

Category