3

我查看了几个选项,例如:

* http://blog.waynehartman.com/archive/2012/01/07/uistoryboard-on-ios-5-the-good-the-bad-and-the.aspx * UIPopoverController 锚位置 *我可以更改 UIPopover动画锚点?

我正在尝试在 mapview 中显示地图注释的弹出框。目前我正在使用一种解决方法。我在我的故事板视图控制器中创建了一个视图,并将我的弹出框锚定到该视图。我将视图移动到正确的位置,然后使用以下方法加载弹出框:

(a) 找到注解的位置

CGPoint annotationPoint = [_mapView    convertCoordinate:self.selectedAnnotationView.annotation.coordinate toPointToView:_mapView];
float boxDY= annotationPoint.y;
float boxDX= annotationPoint.x;
CGRect box = CGRectMake(boxDX,boxDY,1,1);

(b) 将我在情节提要中创建的视图(anchorView)移动到注释位置

anchorView.frame = box;

(c) 显示弹出框

[annotationPopoverController presentPopoverFromRect:box inView:self.view permittedArrowDirections:UIPopoverArrowDirectionAny animated:NO];  

我的直觉是不需要这种解决方法。有没有更简单、更优雅的方法来做到这一点?

谢谢, 马赫什

4

3 回答 3

2

谢谢安娜。为重复发布道歉 - Stackoverflow 标记有点麻烦。

我正在使用 segues 启动弹出框 - 因此我无法正确定位弹出框。

如果您使用 segue,我相信我使用的解决方法适用于定位弹出框。

话虽如此,我现在正在使用您的答案建议的方法。

我使用启动弹出窗口

self.detailsPopover = [[self storyboard] instantiateViewControllerWithIdentifier:@"identifierName"];

//... config code for the popover 

UIPopoverController *pc = [[UIPopoverController alloc] initWithContentViewController:detailsPopover];

//... store popover view controller in an ivar

[self.annotationPopoverController presentPopoverFromRect:selectedAnnotationView.bounds inView:selectedAnnotationView permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];  
于 2012-06-18T07:51:43.003 回答
0

我使用表格和动态锚点创建了一个类似的答案。在我的解决方案中,您可以使用 segues 保留情节提要的流程。您将不得不稍微调整答案,但基本相同。

是否可以手动执行 Popover Segue(从动态 UITableView 单元格)?

于 2013-02-26T21:55:12.607 回答
0
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
        if let identifier = segue.identifier {
        switch identifier {
        case "popover":
            if let vc = segue.destination as? MyTemplateTableViewController, let ppc = vc.popoverPresentationController {
                ppc.permittedArrowDirections = .up
                ppc.delegate = self
// set the sourceRect and sourceView to move the anchor point
                ppc.sourceRect = ((sender as? UITextField)?.frame)!
                ppc.sourceView = sender as? UITextField

            }
            break
        default:
            break

        }
        }
    }
于 2018-03-26T15:50:10.710 回答