在我的iPad应用程序中,我从tableview编辑样式插入控件中显示一个弹出窗口。
当锚点处于高位时,如何防止弹出框与导航栏重叠? 遗憾的是,我不允许发布图片。
我的代码中的CGrect似乎只是移动弹出锚点和大小,而不是它们之间的关系。 (或:锚点在弹出框架上的位置)
任何提示都非常赞赏!
如果UITableViewCellEditingStyleInsert:,则在commitEditingStyle中
popOverController.popoverContentSize = CGSizeMake(320.0, 400.0);
CGRect rect = CGRectMake(cell.bounds.origin.x+200, cell.bounds.origin.y+10, 50, 30);
[popOverController presentPopoverFromRect:rect inView:cell permittedArrowDirections:UIPopoverArrowDirectionLeft animated:YES];
}