latitude,longitudeに代入するところにエラーが発生します
スペースなどは確認しました。ですがエラーが消えません
おそらく型は間違えていないと思います。
swift
1let ud = UserDefaults.standard> 2let mapPoint:CLLocationCoordinate2D 3let pointAno: MKPointAnnotation = MKPointAnnotation() 4 5mapPoint.longitude = ud.double(forKey: "longitude") 6mapPoint.latitude = ud.double(forKey: "latitude") 7
エラー
Consecutive statements on a line must be separated by ';'
Expression resolves to an unused property
Use of unresolved identifier '='
回答1件
あなたの回答
tips
プレビュー