2017-07-24 84 views

回答

0
var dateArray = [Date]() 
for cell:FSCalendarCell in calendar.visibleCells() { 
    if cell.isPlaceholder { 
    dateArray.append(calendar.date(for: cell)!) 
    } 
} 

calendar.select(dateArray.min()) 
calendar.select(dateArray.max()) 
+0

我試圖做你的建議,但我開始:'可選(2017- 08-26 16:00:00 +0000)'和結束: '可選(2017-10-03 16:00:00 +0000)' –

+0

是的,這就是它如何打印。請嘗試選擇日曆中的日期。檢查我更新的答案。 –

相關問題