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
I'd like to see this feature too, or at least an option to disable the use of custom colors on Today's date and Selected date.
I'm using this library to implement a color coded calendar that does not need selection or to emphasize today's date and there does not seem to be a way to remove those styles.
Expected to have a delegate method to dynamically set custom color for the selected state as well like:
- (UIColor *)simpleCalendarViewController:(PDTSimpleCalendarViewController *)controller circleColorForSelectedDate:(NSDate *)selectedDate
and
- (UIColor *)simpleCalendarViewController:(PDTSimpleCalendarViewController *)controller textColorForSelectedDate:(NSDate *)selectedDate
Setting different colors here will only apply to the dates which is currently selected
This:
[[PDTSimpleCalendarViewCell appearance] setCircleSelectedColor:[UIColor orangeColor]];
[[PDTSimpleCalendarViewCell appearance] setTextSelectedColor:[UIColor purpleColor]];
alone won't help if you need different colors depending on the date.
The text was updated successfully, but these errors were encountered: