I would like to animate placeholder text color in UISearchBar
.
So I would like to have placeholder text going from gray to green and back to gray in 1 second and repeat for 8 times.
With help from comment I tried :
[UIView transitionWithView:self.searchBar duration:1.0 options:UIViewAnimationOptionRepeat animations:^{
[UIView setAnimationRepeatCount:8];
[self.searchBar setValue:[UIColor greenColor] forKeyPath:@"_searchField._placeholderLabel.textColor"];
} completion:nil];
I added this code in viewDidAppear
method.
But the problem is that the animation still does not work. It only changes the color of placeholder text without animation.
It only works with UIViewAnimationOptionTransitionCrossDissolve
but I don't want that effect.
Any ideas?