我对动画有疑问。
在View Controller中,我有一个带有框架(0,0,320,200)
的contentView。从View Controller,我按下一个按钮打开相机并从那里拍照。然后我驳回了相机视图。
目前,我使用新的框架(0,200,320,200)
为contentView设置动画,但在这种情况下它不起作用。这是解雇后的动画代码:
[UIView animateWithDuration:0.1f
delay:0
options:UIViewAnimationOptionCurveEaseOut
animations:^{
_contentView.frame = CGRectMake(0,200,320,200);
}
completion:^(BOOL finished){
}
];