画面にいくつかのラベルを含む UIView があります。ビューを反転するトランジションを作成しようとしていますが、アニメーションの途中ですぐにラベルを更新できるようにしたいと考えています。どうすればこれを達成できますか?
[UIView transitionWithView:self.myView
duration:.7
options:UIViewAnimationOptionTransitionFlipFromBottom
animations:^{
// It doesn't update the labels here, until I scoll the tableview (containing the view)
//[self.myView update];
}
completion:^(BOOL finished){
// It doesn't look nice here because it doesn't look smooth, the label flashes and changes after the animation is complete
//[self.myView update];
}];