UILabelsとCATextLayersのどちらを使用しているかについては言及していません。CATextLayersを使用してこれを行う1つの方法は次のとおりです。
まず、アニメーション化するレイヤーを作成し、レイヤーツリーに追加します。私は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];
}
次に、ボタンをこのコンセントに接続します。テキストレイヤーの「文字列」プロパティを変更するたびに、左から右へのプッシュアニメーションが表示されます。
- (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]];
}
あなたが説明したことから、これはあなたが探しているものをあなたに与えるはずです。