You don't mention if you're using UILabels or CATextLayers. Here's one way to do it with CATextLayers:
First create your layer that you want to animate and add it to the layer tree. I did it in viewDidLoad:
- (void)viewDidLoad
{
[super viewDidLoad];
_strings = @[@"Hello world", @"Goodbye cruel world", @"Hello again", @"And again, goodbye!"];
_textLayer = [CATextLayer layer];
[_textLayer setString:[_strings objectAtIndex:0]];
[_textLayer setBounds:CGRectMake(0.0f, 0.0f, 400.0f, 50.0f)];
[_textLayer setPosition:[[self view] center]];
[_textLayer setForegroundColor:[[UIColor orangeColor] CGColor]];
[_textLayer setAlignmentMode:kCAAlignmentCenter];
[[[self view] layer] addSublayer:_textLayer];
}
Then, hook a button up to this outlet. You'll see a push animation from left to right for each change to the text layer's 'string' property.
- (IBAction)didTapChangeText:(id)sender
{
NSInteger index = arc4random() % [_strings count];
CATransition *transition = [CATransition animation];
[transition setType:kCATransitionPush];
[transition setSubtype:kCATransitionFromLeft];
// Tell Core Animation which property you want to use the
// transition animation for. In this case 'string'
[_textLayer addAnimation:transition forKey:@"string"];
// Trigger the animation by setting the string property
[_textLayer setString:[_strings objectAtIndex:index]];
}
From what you've described, this should give you what you're looking for.