我需要动画左栏按钮移动到滑动条菜单 View Controller 中菜单 ListView 的右侧
我如何在 swift3 中制作动画。
UIView.animate(withDuration: 0.3, animations: { (Void)
}, completion:nil)
Best Answer-推荐答案 strong>
简单回答:
您可以在代码中使用 伪装
1.在window 上创建一个BarButton ,外观与viewController 上的left bar button 相同code>,并隐藏 viewController 上的 left bar button 。
2.将 window 上的 BarButton 动画到您的“滑动条菜单 View Controller 中菜单 ListView 的右侧”。
3.在您的滑动条菜单 View Controller 上创建一个与您的barButton 相同的BarButton ,并移除BarButton 在 window 上。
所以它会实现你的想法。
关于ios - 如何以编程方式为 UIBarbutton 项设置动画,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/40648457/
|