I want to get a flicker button , and then I code like this I init the button like this:
_btn = [[UIButton alloc] initWithFrame:CGRectMake(50, 50, 200, 200)];
[_btn addTarget:self action:@selector(test:) forControlEvents:UIControlEventTouchUpInside];
[_btn setBackgroundImage:[UIImage imageNamed:@"img2.jpg"] forState:UIControlStateNormal];
and the I code the animation like this :
[UIView animateWithDuration:1 delay:0 options:UIViewAnimationOptionRepeat|UIViewAnimationOptionAutoreverse animations:^{
_btn.alpha = 0.2;
} completion:nil];
The button is vague but it can not be selected , it can not receive the sender . Anyone knows why it can not receive the sender ?
