2016-07-07 18 views
0

この行「point.title = r」とこの行「point.subtitle = z」に関連付けられた「String?」という型の値に「[String]型の値を割り当てることができません」というエラーメッセージが表示されます。私は上記のエラーを修正するにはどうすればよい '[String]型の値を' String '型に割り当てることはできません。 Swift 2

//I have multiple arrays, lat, long and pass besides place. 
var place = [String]() 

//I have four of the chunks of code for each array 
let json = try NSJSONSerialization.JSONObjectWithData(jSONData, options: .AllowFragments) 
      if let dataFile3 = json["data"] as? [[String: AnyObject]] { 
       for c in dataFile3 { 
        if let placeName = c["PlaceName"] { 
         place.append((placeName as? String)!) 

for var (i,x) in zip(lat, long) { 
      for _ in place { 
       for _ in pass { 
      print(i) 
      print(x) 
      //print(i + ", " + x) 

     // String to double conversion, can I do this when I set the array as a string? 
     let lati = NSString(string: i).doubleValue 
     let longi = NSString(string: x).doubleValue 


     //I have a list of values array so I need to have a for loop that inputs the value over and over again. 
     var point = MGLPointAnnotation() 
      point.coordinate = CLLocationCoordinate2D(latitude: lati, longitude: longi) 

      point.title = place 
      point.subtitle = pass 

     mapView.addAnnotation(point) 
      }}} 

     //var i and x for loop 
     } 

    //viewDidLoad 
    } 

    //creates the markers popup for each point with data 
    func mapView(mapView: MGLMapView, annotationCanShowCallout annotation: MGLAnnotation) -> Bool { 
     // Always try to show a callout when an annotation is tapped. 
     return true 
    } 

...配列全体の文字列を作るplace.descriptionのようなものの多くを試してみましたか?

EDIT:このSantoshの助けを借りて は...

let point = MGLPointAnnotation() 

     var i = lat 
     var x = long 

     //lat and long is served and then all the r,z points, then another lat, long...need to fix this and it may work. 
     for (i,x) in zip(lat, long) { 
      for aPlace in place { 
       for aPass in pass { 
      print(i) 
      print(x) 

     // String to double conversion, can I do this when I set the array as a string? 
     let lati = NSString(string: i).doubleValue 
     let longi = NSString(string: x).doubleValue 

     point.coordinate = CLLocationCoordinate2D(latitude: lati, longitude: longi) 


      point.title = aPlace 
      print(aPlace) 


      point.subtitle = aPass 
      print(aPass) 

     self.mapView.addAnnotation(point) 
      }}} 

これは正しく実行されているか、少なくとも正しい値を報告しますが、ループがちょうどloopInのを保持している...私は変更するものである

+0

'place'は' array'なので、その配列内の項目にアクセスする必要があります。 'point.title'は' String? 'である'オプションのString'を受け入れるためです。そしてそれがエラーの内容です。 – Santosh

+0

はい、基本的に私が思っていたことですが、それを修正する方法がわかりません...私はあなたの提案を以下に使用していますが、残念ながらそれは何の違いもないと思います。私はあなたの努力に感謝します。 – Staley

+0

あなたは以下の答えで何の間違いをしましたか? – Santosh

答えて

1

これを試してみてください:

関連する問題