ios - 如何为 ScrollView 设置动画?

标签 ios animation autolayout

如何在 ScrollView 中创建此类动画或自定义过渡。您可以在 GIF 中看到预期的动画:https://gfycat.com/EveryBackLhasaapso

期待:

在 ScrollView 上长按,它需要像gif动画一样展开,图标也需要放大。

我尝试使用 ScrollView 实现此目的,但动画与预期不匹配。

UIView.animate(withDuration: 0.2, delay: 0.2, usingSpringWithDamping: 0.5, initialSpringVelocity: 1, options: .curveEaseInOut, animations: {
            self.scrollViewHeight.constant = isExpanded == true ? ViewConstants.collectionViewHeightWithExpand : ViewConstants.collectionViewHeightWithcollapse
            self.scrollContentViewHeight.constant = isExpanded == true ? ViewConstants.collectionViewHeightWithExpand : ViewConstants.collectionViewHeightWithcollapse
            self.scrollContentView.transform = isExpanded == true ? CGAffineTransform(scaleX: 1.20, y: 1.20) : CGAffineTransform.identity
             self.view.layoutIfNeeded()
        }) { _ in}

最佳答案

现在运行您的应用程序。

self.scrollViewHeight.constant = isExpanded == true ? ViewConstants.collectionViewHeightWithExpand : ViewConstants.collectionViewHeightWithcollapse
self.scrollContentViewHeight.constant = isExpanded == true ? ViewConstants.collectionViewHeightWithExpand : ViewConstants.collectionViewHeightWithcollapse

UIView.animate(withDuration: 0.2, delay: 0.2, usingSpringWithDamping: 0.5, initialSpringVelocity: 1, options: .curveEaseInOut, animations: {
             self.scrollContentView.transform = isExpanded == true ? CGAffineTransform(scaleX: 1.20, y: 1.20) : CGAffineTransform.identity
             self.view.layoutIfNeeded()
        }) { _ in}

关于ios - 如何为 ScrollView 设置动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55356040/

相关文章:

ios - 将数据从 Pop-over ViewController UITextfield 传回 Master ViewController

iphone - 在 UITableview 上禁用滑动和删除

ios - OpenGL ES 2.0 - 文本混合问题 (iOS)

animation - 如何在 Flutter 中制作一个 "Springy curve"的按钮缩放效果?

ios - 为什么表格 View 的大小与 iPhone X~iPhone XS Max 不同?

ios - ipad:为什么我的连续动画的第一个动画总是立即完成?

javascript - 涟漪动画 : fromPage is undefined! 与霓虹动画 1.1.1+

animation - 三个 JS 中的 Cinema 4D 动画

ios - iPhone X 和底部安全区域插图

ios - 我无法使用自动布局