如何实现系统相机应用程序的缩小动画效果?

时间:2012-03-31 08:39:36

标签: iphone ios ipad animation camera

系统的相机应用程序具有UI效果。拍照后,它会显示动画,即照片缩小并移动到左下角。

如何在我的应用中实现效果?

感谢。

1 个答案:

答案 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);
}];

这可能不是你正在寻找的动画,但它应该给你一个良好的开端。