Merry Christmas.
I have a view which contains a uitableview. Iam using wepopover to show aditional info when one of the tablecells are selected. However my issue is when selecting some cells, part of the popover is shown out of the view and is not visible. The content size is set correct and the point of origin is correct as well.
for adding the popover i do this where the frame is the frame of uitableview cell
detailedInfoView=[[ScheduleDetailedInformation alloc] initWithNibName:@"ScheduleDetailedInformation" bundle:nil];
detailedInfoView.contentSizeForViewInPopover = detailedInfoView.view.frame.size;
navPopover = [[WEPopoverController alloc] initWithContentViewController:detailedInfoView];
[navPopover presentPopoverFromRect:frame
inView:self.tableview
permittedArrowDirections:UIPopoverArrowDirectionUp | UIPopoverArrowDirectionDown|UIPopoverArrowDirectionLeft|UIPopoverArrowDirectionAny
animated:YES];
Can anyone might tell me what i have forgotten or maybe a workaround?
Thanx