地图注释错误中的连续语句

Consecutive Statements in Map Annotation Error

我遵循了很棒的在线教程,但我遇到了这个错误。

一行中的连续语句必须用 ;

分隔
func textFieldShouldReturn(textField: UITextField) -> Bool {
    var annotation = CustomAnnotation(coordinate: locationManager.location, title: textView.text, subtitle: "SubTitle"));
    myMapView.addAnnotation(annotation)
    textView.resignFirstResponder()
    return true
}

这是有错误的行

        var annotation = CustomAnnotation(coordinate: locationManager.location, title: textView.text, subtitle: "SubTitle"));

任何人都可以阐明原因吗?

非常感谢

你的语句末尾有一个额外的 ),

 var annotation = CustomAnnotation(coordinate: locationManager.location, 
 title:textView.text, subtitle: “SubTitle"));

你应该把它改成

var annotation = CustomAnnotation(coordinate: locationManager.location, 
title:textView.text, subtitle: "SubTitle");