圣诞节快乐。
我有一个包含 uitableview 的视图。IAM使用Wepopover在选择其中一个桌面时显示出版信息。但是我的问题是在选择某些单元格时,弹出框的一部分显示在视图之外并且不可见。内容大小设置正确,原点也正确。
为了添加弹出框,我这样做,其中框架是 uitableview 单元格的框架
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];
谁能告诉我我忘记了什么或者解决方法?
谢谢