Closed Hordaric closed 9 years ago
This is because (screenWidth - padding * 2) / 7
is not an integer. You can fix it by:
NSInteger screenWidth = [UIScreen mainScreen].bounds.size.width;
CGFloat paddingAll = screenWidth % 7 + 7;
[GLCalendarView appearance].padding = paddingAll / 2;
White stripes appear on selected range when running on iPhone 6 Plus. Please see attached screenshot.