1

在我的 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];
 }
4

0 回答 0