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

2017-10-16  本文已影响25人  CharlesQiu
    /// 向下滑出日历
    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()
        }
    }
上一篇 下一篇

猜你喜欢

热点阅读