DayView hide date in CalenderKit
Problem:
I had installed Calendarkit in my app with pod.I'm using dayview header.I want to hide the top date display line.I want only the view view to be show.How can i achieve that?
Solution:
@IBOutlet weak var weekView: DayView!
var header = DayHeaderStyle()
header.swipeLabel.textColor = .clear
header.daySelector.selectedBac
weekView.dayHeaderView.updateS
You can update the header style as like above to hide the date display on the top header.
Comments
Post a Comment