iOS9 Popover在MapView上使用模态

时间:2015-10-24 06:31:53

标签: ios iphone swift uikit ios9

我有一个关于如何在iOS9中使用popover的问题。我一直在努力尝试使用Rob问题和答案UIPopoverController在MapView上显示弹出窗口。但是,使用func mapView(mapView: MKMapView, didSelectAnnotationView view: MKAnnotationView) { let annoation = view.annotation! mapView.deselectAnnotation(annoation, animated: false) let popupController = storyboard?.instantiateViewControllerWithIdentifier("mapPopupViewController") as! PopupAnnotationViewController popupController.annotation = annoation //WHAT TO DO NOW? } 已弃用,现在xCode告诉我......

  

现在使用UIViewController演示文稿实现弹出窗口。使用模态表示样式UIModalPresentationPopover和UIPopoverPresentationController

但是,我还没弄清楚如何做到这一点,我希望其他人知道如何使用iOS9实现一个popover。

到目前为止,这是我的代码。

CFLAGS = -Wall -g

%.o:%.c
    gcc $(CFLAGS) $< -o $@

0 个答案:

没有答案