欢迎光临
我们一直在努力

【Swift】弹出日历选择框

建站超值云服务器,限时71元/月

【Swift】弹出日历选择框

项目介绍:

PGActionSheetCalendar.gif

PGActionSheetCalendar

使用FSCalendar进行封装的

CocoaPods安装

pod 'PGActionSheetCalendar'

使用

let calendar = PGActionSheetCalendar()
present(calendar, animated: false, completion: nil)

高级用法

有两种监听选中日期的方法

1、代理

calendar.delegate = self

func calendar(_ calendar: PGActionSheetCalendar, didSelectDate components: DateComponents) {
    print("year = ", components.year!,"month = ", components.month!,  "day = ", components.day!)
}

2、闭包

calendar.didSelectDateComponents = {components in
    print("year = ", components.year!,"month = ", components.month!,  "day = ", components.day!)
}

设置title

let label = calendar.titleLabel
label.text = "PGCalendar"

设置按钮的样式

calendar.cancelButton.setTitleColor(UIColor.red, for: .normal)
calendar.sureButton.setTitleColor(UIColor.red, for: .normal)

设置日历的样式

https://github.com/WenchaoD/FSCalendar

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 【Swift】弹出日历选择框
分享到: 更多 (0)