我真的很茫然,我试图在具有一定透明度的视图上使用 UIViewAnimationOptionTransitionCurlDown ,这是结果(视觉上),代码如下。我想要的是在没有奇怪阴影的情况下进行过渡。任何关于为什么显示该阴影的见解也会有所帮助。它只发生在动画期间。
[UIView transitionWithView:sender
duration:15.0f
options:UIViewAnimationOptionTransitionCurlDown
animations:^{
[self modifyContentOfPageWith:sender];
}
completion:nil];