效果同微博和贴吧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
}
网友评论