2017-08-14 51 views
0

我试图使用带有textField的警报控制器来创建使用textField作为标题的mapView注释。我可以打印所有已创建的常量,但注释不起作用。当我使用alertAction之外的注释代码时,它工作正常,但是我无法获得textField输入。我究竟做错了什么?快速使用AlertController在mapView上添加注释

override func viewDidLoad() { 
    super.viewDidLoad() 

    let uilpgr = UILongPressGestureRecognizer(target: self, action: #selector(ViewController.longpress(gestureRecognizer:))) 
    uilpgr.minimumPressDuration = 2 
    map.addGestureRecognizer(uilpgr) 

} 

func longpress(gestureRecognizer: UIGestureRecognizer) { 

    let alert = UIAlertController(title: "New Place", message: "Enter a name", preferredStyle: UIAlertControllerStyle.alert) 

    alert.addTextField { (textField: UITextField) in 
     textField.placeholder = "Name" 
    } 

    let okAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.default) { (UIAlertAction) in 

     if let tempPlace = alert.textFields?[0].text { 
      let place = tempPlace 
      let touchpoint = gestureRecognizer.location(in: self.map) 
      let coordinate = self.map.convert(touchpoint, toCoordinateFrom: self.map) 
      let annotation = MKPointAnnotation() 
      let latitude = coordinate.latitude 
      let longitude = coordinate.longitude 

      annotation.title = place 
      annotation.subtitle = "Lat " + (String(format: "%.2f", latitude) + " Lon " + String(format: "%.2f", longitude)) 
      annotation.coordinate = coordinate 
      self.map.addAnnotation(annotation) 
     } 


    } 

    let cancelAction = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.cancel) { (UIAlertAction) in 

    } 


    alert.addAction(okAction) 
    alert.addAction(cancelAction) 

    present(alert, animated: true, completion: nil) 

} 

回答

0

只是存储UIAlertController演示前的接触点,并使用在UIAlterAction因为当警报酥料饼/存在,而长按它可以不能够保存/获取触摸点为什么里面UIAlterAction接触点始终是0,0。

func longpress(gestureRecognizer: UIGestureRecognizer) { 

let touchpointtemp = gestureRecognizer.location(in: self.map_home) 

let alert = UIAlertController(title: "New Place", message: "Enter a name", preferredStyle: UIAlertControllerStyle.alert) 

    alert.addTextField { (textField: UITextField) in 
     textField.placeholder = "Name" 
    } 

    let okAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.default) { (UIAlertAction) in 

     if let tempPlace = alert.textFields?[0].text { 
      let place = tempPlace 
      let touchpoint = touchpointtemp 
      let coordinate = self.map_home.convert(touchpoint, toCoordinateFrom: self.map_home) 

      print(coordinate) 
      let annotation = MKPointAnnotation() 
      let latitude = coordinate.latitude 
      let longitude = coordinate.longitude 

      annotation.title = place 
      annotation.subtitle = "Lat " + (String(format: "%.2f", latitude) + " Lon " + String(format: "%.2f", longitude)) 
      annotation.coordinate = coordinate 
      self.map_home.addAnnotation(annotation) 
     } 


    } 

    let cancelAction = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.cancel) { (UIAlertAction) in 

    } 


    alert.addAction(okAction) 
    alert.addAction(cancelAction) 

    present(alert, animated: true, completion: nil) 

}