- (void)animateView:(UIView *)animatedView afterDelay:(float)delay {
NSLog(@"delay is here which i am looking for %f",del);
[UIView animateWithDuration:0.5 delay:9 options:UIViewAnimationOptionAllowUserInteraction
animations:^ {
animatedView.alpha = 0.2f;
} completion:^(BOOL finished) {
[UIView animateWithDuration:9 animations:^ {
animatedView.alpha = 0.7;
} completion:^(BOOL finished) {
[self animateView:animatedView afterDelay:9 ];
}];
}];
Asked
Active
Viewed 93 times
0

Nitin Gohel
- 49,482
- 17
- 105
- 144

Himanshu Bhatia
- 31
- 6
-
add some more informaton about your issue and flow about. – Nitin Gohel Jun 23 '16 at 05:26
-
See this: [Buttons not working during animation](http://stackoverflow.com/a/8346178/4078527) – Bhavin Ramani Jun 23 '16 at 05:30