Changing event default color doesn't have any visible effect.
Changing event selection crashes here
- (void)setEventSelectionColor:(UIColor *)eventSelectionColor
{
self.eventSelectionColor = eventSelectionColor;
}
It actually changes color and doesn't crash if changed to
- (void)setEventSelectionColor:(UIColor *)eventSelectionColor
{
self.appearance.eventSelectionColor = eventSelectionColor;
}
Changing event default color doesn't have any visible effect.
Changing event selection crashes here
{
self.eventSelectionColor = eventSelectionColor;
}
It actually changes color and doesn't crash if changed to
{
self.appearance.eventSelectionColor = eventSelectionColor;
}