Swift.日期選擇器
阿新 • • 發佈:2018-11-09
實現效果:
controller彈出時:半透明背景漸變展示.時間選擇器從下方彈出.選擇器日期滾動到當前日期.
點選確認進行將資料回撥到上一控制器,點選頁面空白區域退出controller.
controller消失時:背景漸變消失,時間選擇器向下退出.
實現方式:
1.首先寫一個ViewController,將DatePicker加入.
2.實現DatePicker的展示效果與功能.
3.修改viewController的背景色,使其半透明.
4.實現我們需要的轉場檢視動畫.
5.修改ViewController的transitioningDelegate,使其使用我們重寫的轉場檢視動畫.
1.首先寫一個ViewController,將DatePicker加入.
let cancel = UIButton(frame: CGRect(x: 0, y: 10, width: 70, height: 20)) let sure = UIButton(frame: CGRect(x: ScreenInfo.Width - 80, y: 10, width: 70, height: 20)) cancel.setTitle("取消", for: .normal) sure.setTitle("確認", for: .normal) cancel.setTitleColor(UIColor.colorWithRGBA(r: 255, g: 51, b: 102, a: 1), for: .normal) sure.setTitleColor(UIColor.colorWithRGBA(r: 255, g: 51, b: 102, a: 1), for: .normal) cancel.addTarget(self, action: #selector(self.onClickCancel), for: .touchUpInside) sure.addTarget(self, action: #selector(self.onClickSure), for: .touchUpInside) picker = UIPickerView(frame: CGRect(x: 0, y: 24, width: ScreenInfo.Width, height: 216)) picker.delegate = self picker.dataSource = self picker.backgroundColor = UIColor.clear picker.clipsToBounds = true//如果子檢視的範圍超出了父檢視的邊界,那麼超出的部分就會被裁剪掉。 //建立日期選擇器 self.containV.addSubview(cancel) self.containV.addSubview(sure) self.containV.addSubview(picker) self.view.addSubview(self.containV)
2.實現DatePicker的展示效果與功能.
//MARK: - PickerViewDelegate extension EWDatePickerViewController:UIPickerViewDelegate,UIPickerViewDataSource { func numberOfComponents(in pickerView: UIPickerView) -> Int { return 3 } func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int { if component == 0 { return 10 }else if component == 1 { return 12 }else { let year: Int = pickerView.selectedRow(inComponent: 0) + currentDateCom.year! let month: Int = pickerView.selectedRow(inComponent: 1) + 1 let days: Int = howManyDays(inThisYear: year, withMonth: month) return days } } private func howManyDays(inThisYear year: Int, withMonth month: Int) -> Int { if (month == 1) || (month == 3) || (month == 5) || (month == 7) || (month == 8) || (month == 10) || (month == 12) { return 31 } if (month == 4) || (month == 6) || (month == 9) || (month == 11) { return 30 } if (year % 4 == 1) || (year % 4 == 2) || (year % 4 == 3) { return 28 } if year % 400 == 0 { return 29 } if year % 100 == 0 { return 28 } return 29 } func pickerView(_ pickerView: UIPickerView, widthForComponent component: Int) -> CGFloat { return ScreenInfo.Width / 3 } func pickerView(_ pickerView: UIPickerView, rowHeightForComponent component: Int) -> CGFloat { return 40 } func pickerView(_ pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? { if component == 0 { return "\((currentDateCom.year!) + row)\("年")" }else if component == 1 { return "\(row + 1)\("月")" }else { return "\(row + 1)\("日")" } } func pickerView(_ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) { if component == 1 { pickerView.reloadComponent(2) } } }
3.修改viewController的背景色,使其半透明.
var backgroundView:UIView = {
let view = UIView()
view.backgroundColor = UIColor(red: 0, green: 0, blue: 0, alpha: 0.4)
return view
}()
self.view.backgroundColor = UIColor.clear
self.view.insertSubview(self.backgroundView, at: 0)
self.modalPresentationStyle = .custom//viewcontroller彈出後之前控制器頁面不隱藏 .custom代表自定義
4.實現我們需要的轉場檢視動畫.
//EWDatePickerViewController的推出和取消動畫
class EWDatePickerPresentAnimated: NSObject,UIViewControllerAnimatedTransitioning {
var type: EWDatePickerPresentAnimateType = .present
init(type: EWDatePickerPresentAnimateType) {
self.type = type
}
/// 動畫時間
func transitionDuration(using transitionContext: UIViewControllerContextTransitioning?) -> TimeInterval {
return 0.3
}
/// 動畫效果
func animateTransition(using transitionContext: UIViewControllerContextTransitioning) {
switch type {
case .present:
let toVC : EWDatePickerViewController = transitionContext.viewController(forKey: .to) as! EWDatePickerViewController
let toView = toVC.view
let containerView = transitionContext.containerView
containerView.addSubview(toView!)
toVC.containV.transform = CGAffineTransform(translationX: 0, y: (toVC.containV.frame.height))
UIView.animate(withDuration: 0.25, animations: {
/// 背景變色
toVC.backgroundView.alpha = 1.0
/// datepicker向上推出
toVC.containV.transform = CGAffineTransform(translationX: 0, y: -10)
}) { (finished) in
UIView.animate(withDuration: 0.2, animations: {
/// transform初始化
toVC.containV.transform = CGAffineTransform.identity
}, completion: { (finished) in
transitionContext.completeTransition(true)
})
}
case .dismiss:
let toVC : EWDatePickerViewController = transitionContext.viewController(forKey: .from) as! EWDatePickerViewController
UIView.animate(withDuration: 0.25, animations: {
toVC.backgroundView.alpha = 0.0
/// datepicker向下推回
toVC.containV.transform = CGAffineTransform(translationX: 0, y: (toVC.containV.frame.height))
}) { (finished) in
transitionContext.completeTransition(true)
}
}
}
}
5.修改ViewController的transitioningDelegate,使其使用我們重寫的轉場檢視動畫.
//MARK: - 轉場動畫delegate
extension EWDatePickerViewController:UIViewControllerTransitioningDelegate{
func animationController(forPresented presented: UIViewController, presenting: UIViewController, source: UIViewController) -> UIViewControllerAnimatedTransitioning? {
let animated = EWDatePickerPresentAnimated(type: .present)
return animated
}
func animationController(forDismissed dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning? {
let animated = EWDatePickerPresentAnimated(type: .dismiss)
return animated
}
}
demo地址:DatePicker.求star.
有問題歡迎探討.