我有一个关于如何在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 $@