Lendo um arquivo JSON usando o Swift


206

Estou realmente lutando para tentar ler um arquivo JSON no Swift para que eu possa brincar com ele. Passei a maior parte de 2 dias pesquisando e tentando métodos diferentes, mas ainda não tive sorte, então me inscrevi no StackOverFlow para ver se alguém pode me apontar na direção certa .....

Meu arquivo JSON é chamado test.json e contém o seguinte:

{
  "person":[
     {
       "name": "Bob",
       "age": "16",
       "employed": "No"
     },
     {
       "name": "Vinny",
       "age": "56",
       "employed": "Yes"
     }
  ]
}    

O arquivo é armazenado nos documentos diretamente e eu o acesso usando o seguinte código:

let file = "test.json"
let dirs : String[] = NSSearchPathForDirectoriesInDomains(
                                                          NSSearchpathDirectory.DocumentDirectory,
                                                          NSSearchPathDomainMask.AllDomainMask,
                                                          true) as String[]

if (dirs != nil) {
    let directories: String[] = dirs
    let dir = directories[0]
    let path = dir.stringByAppendingPathComponent(file)
}

var jsonData = NSData(contentsOfFile:path, options: nil, error: nil)
println("jsonData \(jsonData)" // This prints what looks to be JSON encoded data.

var jsonDict = NSJSONSerialization.JSONObjectWithData(jsonData, options: nil, error: nil) as? NSDictionary

println("jsonDict \(jsonDict)") - This prints nil..... 

Se alguém puder me dar um empurrão na direção certa sobre como eu posso desserializar o arquivo JSON e colocá-lo em um objeto Swift acessível, serei eternamente grato!

Atenciosamente,

Krivvenz.


1
use o parâmetro error ...
Matthias Bauch

2
Poste um código compilável real. Como está agora, pathé visível apenas no ifescopo e não é resolvido quando você o usa NSData(contentsOfFile, options, error); você também tem erros de digitação nos nomes de enumeração.
Kreiri

1
Meu API está totalmente atualizado para Swift 3: github.com/borchero/WebParsing
borchero

esta é a chave -> "values": "% LOAD VALUE FROM tmclass.json file%" e eu preciso analisar outro JSON do arquivo, então como posso conseguir isso no SWIFT?
Mayur Shinde

Respostas:


288

Siga o código abaixo:

if let path = NSBundle.mainBundle().pathForResource("test", ofType: "json")
{
    if let jsonData = NSData(contentsOfFile: path, options: .DataReadingMappedIfSafe, error: nil)
    {
        if let jsonResult: NSDictionary = NSJSONSerialization.JSONObjectWithData(jsonData, options: NSJSONReadingOptions.MutableContainers, error: nil) as? NSDictionary
        {
            if let persons : NSArray = jsonResult["person"] as? NSArray
            {
                // Do stuff
            }
        }
     }
}

A matriz "pessoas" conterá todos os dados da pessoa-chave. Faça iterações para buscá-lo.

Swift 4.0:

if let path = Bundle.main.path(forResource: "test", ofType: "json") {
    do {
          let data = try Data(contentsOf: URL(fileURLWithPath: path), options: .mappedIfSafe)
          let jsonResult = try JSONSerialization.jsonObject(with: data, options: .mutableLeaves)
          if let jsonResult = jsonResult as? Dictionary<String, AnyObject>, let person = jsonResult["person"] as? [Any] {
                    // do stuff
          }
      } catch {
           // handle error
      }
}

4
Seria mais útil se você explicasse por que / como isso resolve o problema descrito na pergunta, em vez de apenas apresentar um monte de código.
Martin R

Oi Abhishek - Obrigado pela resposta, mas ainda não funciona. Isso causa uma falha no aplicativo com o erro abaixo: 2014-06-25 16: 02: 04.146 H & S Capture [4937: 131932] *** Finalizando o aplicativo devido à exceção não capturada 'NSInvalidArgumentException', motivo: '*** - [_NSPlaceholderData initWithContentsOfFile: options: error:]: nil file argument '*** Pilha de primeira chamada: Alguma idéia de por que isso ocorre? Para as opções jsonData: eu coloquei (caminho, opções: NSDataReadingOptions.DataReadingMappedIfSafe, erro: nil)
Krivvenz

O caminho do seu arquivo não está correto. Na verdade, não há um arquivo chamado test.json no caminho especificado por você. Verifique a localização correta do arquivo
Abhishek

15
"deixe jsonData = NSData (contentsOfFile: caminho!)" em vez de "deixe jsonData = NSData.dataWataContentsOfFile (caminho, opções: .DataReadingMappedIfSafe, erro: nil)"
tong

7
É melhor usar instruções de guarda aqui, em vez dessa pirâmide de desgraça.
Zonily Jame

140

Se alguém estiver procurando por SwiftyJSON Answer:
Update:
For Swift 3/4:

if let path = Bundle.main.path(forResource: "assets/test", ofType: "json") {
    do {
        let data = try Data(contentsOf: URL(fileURLWithPath: path), options: .alwaysMapped)
        let jsonObj = try JSON(data: data)
        print("jsonData:\(jsonObj)")
    } catch let error {
        print("parse error: \(error.localizedDescription)")
    }
} else {
    print("Invalid filename/path.")
}

2
isso me transformou em swiftyJSON e carthage! Obrigado :)
Paul Wand

i usado apenas para descobrir que carece de mapeamento objeto, vou tentar um diferente biblioteca próxima vez
Elazaron

Para evitar erros de copiar e colar no swift 3: NSData e NSError tornaram-se Dados e Erro.
selva 12/10

Eu tentei alguns métodos diferentes e isso funcionou melhor para mim em Swift 3
crobicha

(!) Desde MacOS 10.6 / iOS 4 há uma API url(forResourceem (NS)Bundleevitar o passo extra para criar o URL
Vadian

102

Swift 4 usando Decodable

struct ResponseData: Decodable {
    var person: [Person]
}
struct Person : Decodable {
    var name: String
    var age: String
    var employed: String
}

func loadJson(filename fileName: String) -> [Person]? {
    if let url = Bundle.main.url(forResource: fileName, withExtension: "json") {
        do {
            let data = try Data(contentsOf: url)
            let decoder = JSONDecoder()
            let jsonData = try decoder.decode(ResponseData.self, from: data)
            return jsonData.person
        } catch {
            print("error:\(error)")
        }
    }
    return nil
}

Swift 3

func loadJson(filename fileName: String) -> [String: AnyObject]? {
    if let url = Bundle.main.url(forResource: fileName, withExtension: "json") {
        do {
            let data = try Data(contentsOf: url)
            let object = try JSONSerialization.jsonObject(with: data, options: .allowFragments)
            if let dictionary = object as? [String: AnyObject] {
                return dictionary
            }
        } catch {
            print("Error!! Unable to parse  \(fileName).json")
        }
    }
    return nil
}

9
Isso deve ser movido para o novo recurso de documentação ou marcado como a resposta correta.
system

24

O Xcode 8 Swift 3 leu o json da atualização do arquivo:

    if let path = Bundle.main.path(forResource: "userDatabseFakeData", ofType: "json") {
        do {
            let jsonData = try NSData(contentsOfFile: path, options: NSData.ReadingOptions.mappedIfSafe)
            do {
                let jsonResult: NSDictionary = try JSONSerialization.jsonObject(with: jsonData as Data, options: JSONSerialization.ReadingOptions.mutableContainers) as! NSDictionary
                if let people : [NSDictionary] = jsonResult["person"] as? [NSDictionary] {
                    for person: NSDictionary in people {
                        for (name,value) in person {
                            print("\(name) , \(value)")
                        }
                    }
                }
            } catch {}
        } catch {}
    }

14

Nomes atualizados para o Swift 3.0

Com base na resposta de Abhishek e resposta de Druva

func loadJson(forFilename fileName: String) -> NSDictionary? {

    if let url = Bundle.main.url(forResource: fileName, withExtension: "json") {
        if let data = NSData(contentsOf: url) {
            do {
                let dictionary = try JSONSerialization.jsonObject(with: data as Data, options: .allowFragments) as? NSDictionary

                return dictionary
            } catch {
                print("Error!! Unable to parse  \(fileName).json")
            }
        }
        print("Error!! Unable to load  \(fileName).json")
    }

    return nil
}

12

Simplificando o exemplo fornecido por Peter Kreinz. Funciona com o Swift 4.2.

A função de extensão:

extension Decodable {
  static func parse(jsonFile: String) -> Self? {
    guard let url = Bundle.main.url(forResource: jsonFile, withExtension: "json"),
          let data = try? Data(contentsOf: url),
          let output = try? JSONDecoder().decode(self, from: data)
        else {
      return nil
    }

    return output
  }
}

O modelo de exemplo:

struct Service: Decodable {
  let name: String
}

O exemplo de uso:

/// service.json
/// { "name": "Home & Garden" }

guard let output = Service.parse(jsonFile: "service") else {
// do something if parsing failed
 return
}

// use output if all good

O exemplo também funcionará com matrizes:

/// services.json
/// [ { "name": "Home & Garden" } ]

guard let output = [Service].parse(jsonFile: "services") else {
// do something if parsing failed
 return
}

// use output if all good

Observe como não fornecemos genéricos desnecessários, portanto, não precisamos converter o resultado da análise.


10

Resposta Swift 2.1 (baseada em Abhishek):

    if let path = NSBundle.mainBundle().pathForResource("test", ofType: "json") {
        do {
            let jsonData = try NSData(contentsOfFile: path, options: NSDataReadingOptions.DataReadingMappedIfSafe)
            do {
                let jsonResult: NSDictionary = try NSJSONSerialization.JSONObjectWithData(jsonData, options: NSJSONReadingOptions.MutableContainers) as! NSDictionary
                if let people : [NSDictionary] = jsonResult["person"] as? [NSDictionary] {
                    for person: NSDictionary in people {
                        for (name,value) in person {
                            print("\(name) , \(value)")
                        }
                    }
                }
            } catch {}
        } catch {}
    }

10

Swift 3.0, Xcode 8, iOS 10

 if let path = Bundle.main.url(forResource: "person", withExtension: "json") {

        do {
            let jsonData = try Data(contentsOf: path, options: .mappedIfSafe)
            do {
                if let jsonResult = try JSONSerialization.jsonObject(with: jsonData, options: JSONSerialization.ReadingOptions(rawValue: 0)) as? NSDictionary {
                    if let personArray = jsonResult.value(forKey: "person") as? NSArray {
                        for (_, element) in personArray.enumerated() {
                            if let element = element as? NSDictionary {
                                let name = element.value(forKey: "name") as! String
                                let age = element.value(forKey: "age") as! String
                                let employed = element.value(forKey: "employed") as! String
                                print("Name: \(name),  age: \(age), employed: \(employed)")
                            }
                        }
                    }
                }
            } catch let error as NSError {
                print("Error: \(error)")
            }
        } catch let error as NSError {
            print("Error: \(error)")
        }
    }

Resultado:

Name: Bob,  age: 16, employed: No
Name: Vinny,  age: 56, employed: Yes

7

Isso funcionou muito bem comigo

func readjson(fileName: String) -> NSData{

    let path = NSBundle.mainBundle().pathForResource(fileName, ofType: "json")
    let jsonData = NSData(contentsOfMappedFile: path!)

    return jsonData!
}

7

Aqui está a minha solução usando SwiftyJSON

if let path : String = NSBundle.mainBundle().pathForResource("filename", ofType: "json") {
    if let data = NSData(contentsOfFile: path) {

        let json = JSON(data: data)

    }
}

7
fileprivate class BundleTargetingClass {}
func loadJSON<T>(name: String) -> T? {
  guard let filePath = Bundle(for: BundleTargetingClass.self).url(forResource: name, withExtension: "json") else {
    return nil
  }

  guard let jsonData = try? Data(contentsOf: filePath, options: .mappedIfSafe) else {
    return nil
  }

  guard let json = try? JSONSerialization.jsonObject(with: jsonData, options: .allowFragments) else {
    return nil
  }

  return json as? T
}

Copy🏻 Solução independente de estrutura de terceiros pronta para copiar e colar.

uso 👇🏻

let json:[[String : AnyObject]] = loadJSON(name: "Stations")!


isso funcionou para mim. Eu precisava codificar uma lista pesquisável de medicamentos em um aplicativo. Eu obtive o arquivo json do banco de dados mySQL. Larguei o arquivo json no meu projeto XCODE em execução no viewDidLoad e bam eu tinha meu dicionário json !!!
21717 Brian As

5

Estou fornecendo outra resposta, porque nenhuma delas aqui é voltada para carregar o recurso do pacote de teste. Se você estiver consumindo um serviço remoto que lança JSON e deseja testar a unidade analisando os resultados sem atingir o serviço real, você recebe uma ou mais respostas e as coloca em arquivos na pasta Testes em seu projeto.

func testCanReadTestJSONFile() {
    let path = NSBundle(forClass: ForecastIOAdapterTests.self).pathForResource("ForecastIOSample", ofType: "json")
    if let jsonData = NSData(contentsOfFile:path!) {
        let json = JSON(data: jsonData)
        if let currentTemperature = json["currently"]["temperature"].double {
            println("json: \(json)")
            XCTAssertGreaterThan(currentTemperature, 0)
        }
    }
}

Isso também usa o SwiftyJSON, mas a lógica principal de obter o pacote de teste e carregar o arquivo é a resposta para a pergunta.


5

Swift 4: experimente minha solução:

test.json

{
    "person":[
        {
            "name": "Bob",
            "age": "16",
            "employed": "No"
        },
        {
            "name": "Vinny",
            "age": "56",
            "employed": "Yes"
        }
    ]
}

RequestCodable.swift

import Foundation

struct RequestCodable:Codable {
    let person:[PersonCodable]
}

PersonCodable.swift

import Foundation

struct PersonCodable:Codable {
    let name:String
    let age:String
    let employed:String
}

Decodable + FromJSON.swift

import Foundation

extension Decodable {

    static func fromJSON<T:Decodable>(_ fileName: String, fileExtension: String="json", bundle: Bundle = .main) throws -> T {
        guard let url = bundle.url(forResource: fileName, withExtension: fileExtension) else {
            throw NSError(domain: NSURLErrorDomain, code: NSURLErrorResourceUnavailable)
        }

        let data = try Data(contentsOf: url)

        return try JSONDecoder().decode(T.self, from: data)
    }
}

Exemplo:

let result = RequestCodable.fromJSON("test") as RequestCodable?

result?.person.compactMap({ print($0) }) 

/*
PersonCodable(name: "Bob", age: "16", employed: "No")
PersonCodable(name: "Vinny", age: "56", employed: "Yes")
*/

1
Sua fromJSONfunção de extensão é lançada, mas no exemplo você a chama sem a trypalavra - chave. Este código não será compilado.
NeverwinterMoon

Além disso, para fromJSONvocê usar uma extensão Decodable, você não usa nenhuma informação do tipo Decodable, mas fornece genéricos adicionais (completamente inúteis).
NeverwinterMoon

3

O mais recente swift 3.0 absolutamente funcionando

func loadJson(filename fileName: String) -> [String: AnyObject]?
{
    if let url = Bundle.main.url(forResource: fileName, withExtension: "json") 
{
      if let data = NSData(contentsOf: url) {
          do {
                    let object = try JSONSerialization.jsonObject(with: data as Data, options: .allowFragments)
                    if let dictionary = object as? [String: AnyObject] {
                        return dictionary
                    }
                } catch {
                    print("Error!! Unable to parse  \(fileName).json")
                }
            }
            print("Error!! Unable to load  \(fileName).json")
        }
        return nil
    }

3

Swift 4 JSONpara ClasscomDecodable - para quem prefere aulas

Defina as classes da seguinte maneira:

class People: Decodable {
  var person: [Person]?

  init(fileName : String){
    // url, data and jsonData should not be nil
    guard let url = Bundle.main.url(forResource: fileName, withExtension: "json") else { return }
    guard let data = try? Data(contentsOf: url) else { return }
    guard let jsonData = try? JSONDecoder().decode(People.self, from: data) else { return }

    // assigns the value to [person]
    person = jsonData.person
  }
}

class Person : Decodable {
  var name: String
  var age: String
  var employed: String
}

Uso, bastante abstrato:

let people = People(fileName: "people")
let personArray = people.person

Isso permite que métodos para classes Peoplee Personclasses, variáveis ​​(atributos) e métodos também possam ser marcados como privatese necessário.


3

O código a seguir funciona para mim. Estou usando o Swift 5

let path = Bundle.main.path(forResource: "yourJSONfileName", ofType: "json")
var jsonData = try! String(contentsOfFile: path!).data(using: .utf8)!

Então, se sua Person Struct (ou Classe) for Decodable (e também todas as suas propriedades), você pode simplesmente fazer:

let person = try! JSONDecoder().decode(Person.self, from: jsonData)

Evitei todo o código de manipulação de erros para torná-lo mais legível.


2

Atualizado para Swift 3 com a maneira mais segura

    private func readLocalJsonFile() {

    if let urlPath = Bundle.main.url(forResource: "test", withExtension: "json") {

        do {
            let jsonData = try Data(contentsOf: urlPath, options: .mappedIfSafe)

            if let jsonDict = try JSONSerialization.jsonObject(with: jsonData, options: .mutableContainers) as? [String: AnyObject] {

                if let personArray = jsonDict["person"] as? [[String: AnyObject]] {

                    for personDict in personArray {

                        for (key, value) in personDict {

                            print(key, value)
                        }
                        print("\n")
                    }
                }
            }
        }

        catch let jsonError {
            print(jsonError)
        }
    }
}

insira a descrição da imagem aqui


2

Swift 5.1, Xcode 11

Você pode usar isto:


struct Person : Codable {
    let name: String
    let lastName: String
    let age: Int
}

func loadJson(fileName: String) -> Person? {
   let decoder = JSONDecoder()
   guard
        let url = Bundle.main.url(forResource: fileName, withExtension: "json"),
        let data = try? Data(contentsOf: url),
        let person = try? decoder.decode(Person.self, from: data)
   else {
        return nil
   }

   return person
}

1

Com base na resposta de Abhishek , para o iOS 8, seria:

let masterDataUrl: NSURL = NSBundle.mainBundle().URLForResource("masterdata", withExtension: "json")!
let jsonData: NSData = NSData(contentsOfURL: masterDataUrl)!
let jsonResult: NSDictionary = NSJSONSerialization.JSONObjectWithData(jsonData, options: nil, error: nil) as! NSDictionary
var persons : NSArray = jsonResult["person"] as! NSArray

Você está usando o Swift 2.0? Então sim, seria esse o caso. Isso foi respondido antes da 2.0.
David Poxon

1

Isso funcionou para mim com o XCode 8.3.3

func fetchPersons(){

    if let pathURL = Bundle.main.url(forResource: "Person", withExtension: "json"){

        do {

            let jsonData = try Data(contentsOf: pathURL, options: .mappedIfSafe)

            let jsonResult = try JSONSerialization.jsonObject(with: jsonData, options: .mutableContainers) as! [String: Any]
            if let persons = jsonResult["person"] as? [Any]{

                print(persons)
            }

        }catch(let error){
            print (error.localizedDescription)
        }
    }
}

1

Swift 4.1 Atualizado Xcode 9.2

if let filePath = Bundle.main.path(forResource: "fileName", ofType: "json"), let data = NSData(contentsOfFile: filePath) {

     do {
      let json = try JSONSerialization.jsonObject(with: data as Data, options: JSONSerialization.ReadingOptions.allowFragments)        
        }
     catch {
                //Handle error
           }
 }

3
Não há nada novo, muito pelo contrário: não use NSDatano Swift 3+ e .allowFragmentsé inútil neste caso.
vadian

1
//change type based on your struct and right JSON file

let quoteData: [DataType] =
    load("file.json")

func load<T: Decodable>(_ filename: String, as type: T.Type = T.self) -> T {
    let data: Data

    guard let file = Bundle.main.url(forResource: filename, withExtension: nil)
        else {
            fatalError("Couldn't find \(filename) in main bundle.")
    }

    do {
        data = try Data(contentsOf: file)
    } catch {
        fatalError("Couldn't load \(filename) from main bundle:\n\(error)")
    }

    do {
        let decoder = JSONDecoder()
        return try decoder.decode(T.self, from: data)
    } catch {
        fatalError("Couldn't parse \(filename) as \(T.self):\n\(error)")
    }
}


0

Usei o código abaixo para buscar o JSON do arquivo FAQ-data.json presente no diretório do projeto.

Estou implementando no Xcode 7.3 usando o Swift.

     func fetchJSONContent() {
            if let path = NSBundle.mainBundle().pathForResource("FAQ-data", ofType: "json") {

                if let jsonData = NSData(contentsOfFile: path) {
                    do {
                        if let jsonResult: NSDictionary = try NSJSONSerialization.JSONObjectWithData(jsonData, options: NSJSONReadingOptions.MutableContainers) as? NSDictionary {

                            if let responseParameter : NSDictionary = jsonResult["responseParameter"] as? NSDictionary {

                                if let response : NSArray = responseParameter["FAQ"] as? NSArray {
                                    responseFAQ = response
                                    print("response FAQ : \(response)")
                                }
                            }
                        }
                    }
                    catch { print("Error while parsing: \(error)") }
                }
            }
        }

override func viewWillAppear(animated: Bool) {
        fetchFAQContent()
    }

Estrutura do arquivo JSON:

{
    "status": "00",
    "msg": "FAQ List ",
    "responseParameter": {
        "FAQ": [
            {                
                "question":Question No.1 here”,
                "answer":Answer goes here”,  
                "id": 1
            },
            {                
                "question":Question No.2 here”,
                "answer":Answer goes here”,
                "id": 2
            }
            . . .
        ]
    }
}

0

Também posso recomendar o Swift JSON Tutorial de Ray Wenderlich (que também aborda a incrível alternativa SwiftyJSON, Gloss ). Um trecho (que, por si só, não responde totalmente ao pôster, mas o valor agregado dessa resposta é o link, portanto, não há -1 para isso, por favor):

No Objective-C, analisar e desserializar o JSON é bastante direto:

NSArray *json = [NSJSONSerialization JSONObjectWithData:JSONData
options:kNilOptions error:nil];
NSString *age = json[0][@"person"][@"age"];
NSLog(@"Dani's age is %@", age);

No Swift, analisar e desserializar o JSON é um pouco mais tedioso devido aos opcionais do Swift e à segurança de tipo [mas] como parte do Swift 2.0, a guardinstrução foi introduzida para ajudar a se livrar das ifinstruções aninhadas :

var json: Array!
do {
  json = try NSJSONSerialization.JSONObjectWithData(JSONData, options: NSJSONReadingOptions()) as? Array
} catch {
  print(error)
}

guard let item = json[0] as? [String: AnyObject],
  let person = item["person"] as? [String: AnyObject],
  let age = person["age"] as? Int else {
    return;
}
print("Dani's age is \(age)")

Obviamente, no XCode 8.x, basta tocar duas vezes na barra de espaço e dizer "Ei, Siri, desserialize esse JSON para mim no Swift 3.0 com recuos de espaço / tabulação".


0

SWIFTYJSON VERSÃO SWIFT 3

func loadJson(fileName: String) -> JSON {

    var dataPath:JSON!

    if let path : String = Bundle.main.path(forResource: fileName, ofType: "json") {
        if let data = NSData(contentsOfFile: path) {
             dataPath = JSON(data: data as Data)
        }
    }
    return dataPath
}

0

Primeiro, crie um Struc codificável como este:

  struct JuzgadosList : Codable {
    var CP : Int
    var TEL : String
    var LOCAL : String
    var ORGANO : String
    var DIR : String
}

Agora declare a variável

 var jzdosList = [JuzgadosList]()

Ler do diretório principal

func getJsonFromDirectory() {

        if let path = Bundle.main.path(forResource: "juzgados", ofType: "json") {
            do {
                let data = try Data(contentsOf: URL(fileURLWithPath: path), options: .alwaysMapped)
                let jList = try JSONDecoder().decode([JuzgadosList].self, from: data)
                self.jzdosList = jList

                DispatchQueue.main.async() { () -> Void in
                    self.tableView.reloadData()
                }

            } catch let error {
                print("parse error: \(error.localizedDescription)")
            }
        } else {
            print("Invalid filename/path.")
        }
    }

Leia da Web

func getJsonFromUrl(){

        self.jzdosList.removeAll(keepingCapacity: false)

        print("Internet Connection Available!")

        guard let url = URL(string: "yourURL")  else { return }

        let request = URLRequest(url: url, cachePolicy: URLRequest.CachePolicy.reloadIgnoringLocalCacheData, timeoutInterval: 60.0)
        URLSession.shared.dataTask(with: request) { (data, response, err) in
            guard let data = data else { return }
            do {
                let jList = try JSONDecoder().decode([JuzgadosList].self, from: data)
                self.jzdosList = jList

                DispatchQueue.main.async() { () -> Void in
                    self.tableView.reloadData()
                }
            } catch let jsonErr {
                print("Error serializing json:", jsonErr)
            }
        }.resume()
    }

0

Use esta função genérica

func readJSONFromFile<T: Decodable>(fileName: String, type: T.Type) -> T? {
    if let url = Bundle.main.url(forResource: fileName, withExtension: "json") {
        do {
            let data = try Data(contentsOf: url)
            let decoder = JSONDecoder()
            let jsonData = try decoder.decode(T.self, from: data)
            return jsonData
        } catch {
            print("error:\(error)")
        }
    }
    return nil
}

com esta linha de código:

let model = readJSONFromFile(fileName: "Model", type: Model.self)

para este tipo:

struct Model: Codable {
    let tall: Int
}
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.