美文网首页
iOS-swfit 仿新浪微博、百度贴吧 Tabbar弹出视图

iOS-swfit 仿新浪微博、百度贴吧 Tabbar弹出视图

作者: Cary9396 | 来源:发表于2018-07-18 15:34 被阅读0次

    效果同微博和贴吧Tabbar中间按钮,点击后会动画弹出视图,视图上有各个按钮选项。

    动画效果主要运用UIView animation动画效果的一种:

    UIView.animate(withDuration: kAnimationDuration, delay: Double(i) * 0.03, usingSpringWithDamping: 0.7, initialSpringVelocity: 0.04, options: .allowUserInteraction, animations: {

                        button.frame = CGRect (x: itemWidth * CGFloat(loc), y: CGFloat(vMargin)+CGFloat((itemHeight+vSpacing)*row), width: itemWidth, height: CGFloat(itemHeight))

                    }) { (finished) in

                    }

    具体可查看Demo

    相关文章

      网友评论

          本文标题:iOS-swfit 仿新浪微博、百度贴吧 Tabbar弹出视图

          本文链接:https://www.haomeiwen.com/subject/pwxopftx.html