【发布时间】:2013-12-19 11:28:18
【问题描述】:
我正在尝试实现与卡片应用程序 (http://www.youtube.com/watch?v=aWjX_qufmc0) 中相同的效果,用于打开里面的内容(水平贺卡打开类型动画:https://store.marathonpress.com/image/cache/data/store_381/Previews/Press-Printed-Card-Folded-5x7-H-C-500x500.jpg)。我用CABasicAnimation试过了,但无法访问,谁能帮我实现同样的动画效果。
我正在尝试这样:
- (void)loadInsideMessageView {
[UIView transitionWithView:backgroundView
duration:1.0
options:UIViewAnimationOptionTransitionFlipFromBottom //any animation
animations:^ {
insideView.frame = CGRectMake(0, 40, 568, 280);
[backgroundView addSubview:insideView];
}
completion:nil];
}
谢谢。
【问题讨论】:
标签: ios iphone core-animation flip cabasicanimation