• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 更改月份时,CVCalendar iOS 禁用日期不起作用

[复制链接]
菜鸟教程小白 发表于 2022-12-11 17:25:55 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在使用 CVCalendar在 iPhone 应用程序中并且想要禁用范围之外的日期。只有在未来 4 到 14 天之间才能启用日历上的日期。我有一个名为 disableOutsideDays() 的函数,它试图实现这一点,但它只是偶尔起作用,比如日历 View 首次出现时,而不是当用户滚动到下一个或前几个月时。

func disableOutsideDays() {
    let calendar = NSCalendar.currentCalendar()
    for weekV in calendarView.contentController.presentedMonthView.weekViews {
        for dayView in weekV.dayViews {


            if calendar.compareDate(dayView.date.convertedDate()!, toDate: NSDate(), toUnitGranularity: .Day) == .OrderedAscending || calendar.compareDate(dayView.date.convertedDate()!, toDate: calendar.dateByAddingUnit(.Day, value: 14, toDate: NSDate(), options: NSCalendarOptions(rawValue: 0))!, toUnitGranularity: .Day) == .OrderedDescending {
                dayView.userInteractionEnabled = false
                dayView.dayLabel.textColor = calendarView.appearance.dayLabelWeekdayOutTextColor
            }
        }
    }
}

我在 viewDidLoad 以及 didShowNextMonthViewdidShowPreviousMonthView 中调用它。奇怪的是,滚动到下个月可能会将所有日期显示为已启用(与我想要的相反),但随后滚动回当前月份并再次返回下一个显示它们已禁用。



Best Answer-推荐答案


对于 CVCalendar,使用此代码禁用特定范围之外的日期。

例如: 如果您希望用户访问 2017-08-222017-09-22 之间的所有日期,请直接在 viewcontroller 类中使用以下两个函数,其中包含开始日期和结束日期。

func earliestSelectableDate() -> Date {

        let dateStr = "2017-08-22 12:25:21 +0000" // Date after which all dates will get disabled

        let dateFormatter = DateFormatter()
        dateFormatter.dateFormat = "yyyy-MM-dd HH:mm:ssZ"
        let date = dateFormatter.date(from:dateStr)!
        let calendar = Calendar.current
        let components = calendar.dateComponents([.year, .month, .day, .hour], from: date)
        let startDate = calendar.date(from:components)

        return startDate!
    }


func latestSelectableDate() -> Date {

        let dateStr = "2017-09-22 12:25:21 +0000"

        let dateFormatter = DateFormatter()
        dateFormatter.dateFormat = "yyyy-MM-dd HH:mm:ssZ"
        let date = dateFormatter.date(from:dateStr)!
        let calendar = Calendar.current
        let components = calendar.dateComponents([.year, .month, .day, .hour], from: date)
        let finalDate = calendar.date(from:components)

        return finalDate!
    }

注意:-这在周 View 模式下不起作用

关于ios - 更改月份时,CVCalendar iOS 禁用日期不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39297370/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap