如何将 CATransition 限制为特定视图而不是整个视图?
我的 CATransition 代码工作正常,但我需要宽度有限的动画,那么如何管理此动画或如何将 CATransition 限制为特定视图?
My CATransition code is working fine, but I need that animation limited in width so how to manage this Animation or how to restrict CATransition to a specific view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前尚不清楚你在问什么。
您将过渡应用于什么?什么是动画,你想做哪些不同的事情?
如果将过渡应用于视图,它将更改该视图以及视图中包含的所有内容。不为子视图设置动画的唯一方法(如果这就是您所要求的)是使其不是子视图,并将其提升为您正在设置动画的视图的同级视图。
It isn't clear what you're asking.
What are you applying the transition to? What animates, and what do you want to do differently?
If you apply a transition to a view, it will change that view and everything contained in the view. The only way to not animate a subview (if that's what you're asking) is to make it NOT a subview, and promote it to a sibling of the view that you are animating.