系统的相机应用程序具有UI效果。拍照后,它会显示动画,即照片缩小并移动到左下角。
如何在我的应用中实现效果?
感谢。
答案 0 :(得分:3)
在您尝试缩小调用类似代码的视图中:
[UIView animateWithDuration:1.0 animations:^{
// self is the view in this case
// if you call this from the controller, use self.view
self.frame = CGRectMake(self.frame.origin.x, self.frame.origin.y, smallWidth, smallHeight);
self.bounds = CGRectOffset(self.bounds, amountToMoveX, amountToMoveY);
}];
这可能不是你正在寻找的动画,但它应该给你一个良好的开端。