公告
财富商城
积分规则
提问
发文
2019-09-06 06:55发布
混吃等死
i'm using FSCalendar and want to remove days (Sun, mon, Tue, Wed, Thu, Fri, and Sat) from calendar
for now i only change the color to clear
calendarView.appearance.weekdayTextColor = UIColor.clear
You can hide/remvove days from calendar using calendarWeekdayView.
calendarWeekdayView
Hide
calendarView.calendarWeekdayView.isHidden = true
Remove
calendarView.calendarWeekdayView.removeFromSuperview()
This library contains the property to handle this condition
self.calendar.weekdayHeight = 0
and this will remove the days header.
最多设置5个标签!
You can hide/remvove days from calendar using
calendarWeekdayView
.Hide
Remove
This library contains the property to handle this condition
self.calendar.weekdayHeight = 0
and this will remove the days header.