スーパーからアニメーションでサブビューを送信したいのですが、UIView
アニメーション中にサイズを変更しようとするとUILabel
、サブビューにあるものが突然小さくなりすぎました。これが私のコードの一部です
-(void)pushOutScreen:(UIViewController *)pop{
[UIView animateWithDuration:1
delay:0.0
options: UIViewAnimationTransitionFlipFromLeft
animations:^{
CGRect frame = pop.view.frame;
frame.size.height = frame.size.height /4;
frame.size.width = frame.size.width /4;
frame.origin.x = -500;
frame.origin.y = 318;
pop.view.frame = frame;
}
completion:^(BOOL finished){
NSLog(@"Done!");
}];
}
注:サブビュー内のいずれUIButton
かまたはそれはうまくアニメーション化されていますが、問題があるのは。だけです。UIImage
UILabel