I want to show some text in my app like moving text (Scrolling with animation from right to left). How to do this programmatically?
I took UIViewcontroller
UIViewcontroller
you could try this one
[UIView animateWithDuration:15.0f animations:^{ Moving_Cloud.frame = CGRectMake(320.0f, 30.0f, Moving_Cloud.frame.size.width, Moving_Cloud.frame.size.height); } completion:^(BOOL finished){ }];
here " Moving_Cloud " is my image view so likewise you can try for your label.