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
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
.
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.