kovpas/PMCalendar

The screen rotates date position error.

Opened this issue · 1 comments

Screen Shot 2013-04-07 at 4 56 22

modify: PMCalendarController.m
Method: adjustCalendarPositionForPermittedArrowDirections
self.calendarView.frame = frm;
to:
CGRect tempFrm = frm;
tempFrm.origin.y=0;

self.calendarView.frame = tempFrm;

But I'm not very clear, whether it will affect the other.

In addition, there is a small problem, is PMSelectionView background shows in the figure, height is beyond PMCalendarBackgroundView height.
Screen Shot 2013-04-07 at 9 34 18