在我的 -application:DidFinishLaunchingWithOptions 中,作为最后一部分,我有以下代码:
[UIView animateWithDuration:1 delay:1 options:UIViewAnimationOptionCurveEaseOut
animations:^{
[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:self.viewController.source cache:YES];
self.viewController.source.alpha = 1.0;
} completion:nil];
它应该做的是“淡入'源'视图并将其卷曲以覆盖背景”
相反,它只是在“源”视图中淡出,没有卷曲。
线索?