我已经在iPhone中实现了相机并拍摄了图像并将其保存在PhotoAlbum中。 现在我想要的是当我保存一个图像并使按钮启用拍摄第二张图像时,我希望虹膜显示在两者之间。所以它感觉像iPhone的相机功能一样令人兴奋。 我是怎么做的,请给出一些建议。 感谢
答案 0 :(得分:1)
像Stachematic和Zombiematic这样的应用程序实际上已经逃脱了使用这个私有API ......
CATransition *animation = [CATransition animation];
[animation setDelegate:self];
[animation setDuration:0.3];
animation.timingFunction = UIViewAnimationCurveEaseInOut;
[animation setType:@"cameraIris"];
[cameraView.layer addAnimation:animation forKey:nil];