gpt4 book ai didi

ios5 - UIPageViewController 过渡速度/持续时间?

转载 作者:行者123 更新时间:2023-12-04 12:59:29 25 4
gpt4 key购买 nike

有什么方法可以更改页面 curl 过渡的默认持续时间?
这是禁食的方式,然后我希望它会是?

谢谢
沙尼

最佳答案

这是使用默认过渡来 curl 页面并指定 curl 速度的方法。

        CATransition *animation = [CATransition animation];
[animation setDelegate:self];
[animation setDuration:1.0f];
animation.startProgress = 0.2;
animation.endProgress = 1;

if (isGoingBackward) {
[animation setType:@"pageUnCurl"];
[animation setSubtype:kCATransitionFromTop];
}
else
{
[animation setType:@"pageCurl"];
[animation setSubtype:kCATransitionFromLeft];
}

[animation setFillMode: kCAFillModeBackwards];
[self.view.layer addAnimation:animation forKey:@"animation"];

关于ios5 - UIPageViewController 过渡速度/持续时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9895305/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com