You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After to set the property to false, this sentence only hide the dayHeaderView view leaving a white space (The green background is just for reference)
myView.isHeaderViewVisible = false
Result I am trying to achieve
The possible fix that needs a change in the library.
I did a small change on the file DayView(inside CalendarKit) project removing the else
// Beforeoverridepublicfunc layoutSubviews(){
super.layoutSubviews()
if #available(iOS 11,*){}else{...}}// Afteroverridepublicfunc layoutSubviews(){
super.layoutSubviews()
if #available(iOS 11,*){// Removing the else case...}}
and the frame is recalculated.
Final Note
To be sure that I'm not doing something wrong in my project I did the same change trying with the CalendarKitDemo project inside this repository and the bug is present.
The text was updated successfully, but these errors were encountered:
New Issue Checklist
Issue Description
After to set the property to
false
, this sentence only hide thedayHeaderView
view leaving a white space(The green background is just for reference)
Result I am trying to achieve
I did a small change on the file
DayView
(inside CalendarKit) project removing theelse
and the frame is recalculated.
Final Note
To be sure that I'm not doing something wrong in my project I did the same change trying with the CalendarKitDemo project inside this repository and the bug is present.
The text was updated successfully, but these errors were encountered: