How to remove fading of an animation with the following attributes to the CATransition.
What actually I am trying is to display a content with horizontal scrolling , just as a ticker.
I am getting ticker done but every time the animation repeated it starts with a fading. I would like to avoid it . Is there any other way.
[[lTickerView layer] addAnimation:basic_animation forKey:nil];CATransition *basic_animation = [CATransition animation];
[basic_animation setDuration:50.0];
[basic_animation setType:kCATransitionPush ];
[basic_animation setSubtype:kCATransitionFromRight];
What actually I am trying is to display a content with horizontal scrolling , just as a ticker.
I am getting ticker done but every time the animation repeated it starts with a fading. I would like to avoid it . Is there any other way.