无法将'__NSDictionaryM'(0x1055952b0)类型的值转换为'NSString'(0x1023e3c60)

时间:2017-05-09 17:35:52

标签: ios json swift swift3 imdb

我在我的代码中使用http://www.omdbapi.com/?t=pulp+fiction IMDB api来表达“纸浆小说”。

应用程序中有一个搜索栏,我将“纸浆小说”写入此搜索栏然后输入。 我收到这个错误。

  

无法将类型'__NSDictionaryM'(0x1055952b0)的值转换为   'NSString'(0x1023e3c60)。

ViewController.swift:

//
//  ViewController.swift
//  IMDB Api Project
//
//  Created by gurkan on 5.05.2017.
//  Copyright © 2017 gurkan. All rights reserved.
//

import UIKit

class ViewController: UIViewController,UISearchBarDelegate {
    @IBOutlet weak var searchBar: UISearchBar!
    @IBOutlet weak var imageView: UIImageView!
    @IBOutlet weak var titleLabel: UILabel!
    @IBOutlet weak var directorLabel: UILabel!
    @IBOutlet weak var ratingLabel: UILabel!
    @IBOutlet weak var actorsLabel: UILabel!

    override func viewDidLoad() {
        super.viewDidLoad()

        searchBar.delegate = self
    }

    func searchBarSearchButtonClicked(_ searchBar: UISearchBar) {
        searchForMovie(title: searchBar.text!)
        searchBar.text = ""
    }

    func searchForMovie(title: String){
        //http://www.omdbapi.com/?t=pulp+fiction
        if let movie = title.addingPercentEncoding(withAllowedCharacters: CharacterSet.urlQueryAllowed){
            let url = URL(string: "http://www.omdbapi.com/?t=\(movie)")
            let session = URLSession.shared
            let task = session.dataTask(with: url!, completionHandler: { (data, response, error) in
                if error != nil {
                    print(error!)
                } else {
                    if data != nil {
                        do {
                            let jsonResult = try JSONSerialization.jsonObject(with: data!, options: JSONSerialization.ReadingOptions.mutableContainers)
                                as! String //Error Line!

                            let jsonString = jsonResult.components(separatedBy: "")

                            let jsonDict = jsonString as! Dictionary<String,String>

                            DispatchQueue.main.async {
                                print(jsonDict)
                            }
                        } catch {
                        }
                    }
                }
            })
            task.resume()
        }
    }
}

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

有两件事是错的。

首先,此线力展开到String

let jsonResult = try JSONSerialization.jsonObject(with: data!, options: JSONSerialization.ReadingOptions.mutableContainers)
                            as! String

简单删除as! String - 不需要它。 Swift将推断出类型并正确创建jsonResult

其次,您的代码假定返回的JSON响应是完全由String个名称和String值组成的字典。查看您发布的网址的响应,与Ratings值关联的对象实际上是字典。由于您强制将jsonString展开到字符串字典中,因此它将失败,因为它不是字符串字典。它是字符串和其他东西的字典 - 字典。

最简单的解决方法是:

替换此行:

let jsonDict = jsonString as! Dictionary<String,String>

let jsonDict = jsonString as! [String: AnyObject]