美文网首页
[iOS] 使用 SnapKit 时 view 向下滑出屏幕的写

[iOS] 使用 SnapKit 时 view 向下滑出屏幕的写

作者: CharlesQiu | 来源:发表于2017-10-16 11:44 被阅读25次
  • 简单动画
    /// 向下滑出日历
    private func hideCalendarViewWithAnimation() {
        UIView.animate(withDuration: 0.33, animations: {
            self.viewContain.snp.updateConstraints({ (make) in
                make.bottom.equalTo(self.view).offset(self.heightCalendar)
            })
            self.view.layoutIfNeeded()
        }) { (_) in
            self.viewContain.removeFromSuperview()
        }
    }

相关文章

网友评论

      本文标题:[iOS] 使用 SnapKit 时 view 向下滑出屏幕的写

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