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.