Вот

аюсь реализовать новоеCodable протокол, поэтому я добавилCodable к моей структуре, но язастрял на расшифровке JSON.

Вот что у меня было раньше:

Структура -

struct Question {
    var title: String
    var answer: Int
    var question: Int
}

Клиент -

...

guard let data = data else {
    return
}

do {
    self.jsonResponse = try JSONSerialization.jsonObject(with: data, options: .allowFragments) as? [String: Any]
    let questionItems = self.jsonResponse?["themes"] as! [[String: Any]]

    questionItems.forEach {
        let item = Question(title: $0["title"] as! String,
                            answer: $0["answer"] as! Int,
                            question: $0["question"] as! Int)
        questionData.append(item)
    }

} catch {
    print("error")
}

Вот что у меня сейчас, но я не могу разобраться с частью декодера:

Структура -

struct Question: Codable {
    var title: String
    var answer: Int
    var question: Int
}

Клиент -

...

let decoder = JSONDecoder()
if let questions = try? decoder.decode([Question].self, from: data) {
    // Can't get past this part
} else {
    print("Not working")
}

Это печатает "Не работает", потому что я не могу пройтиdecoder.decode часть. Есть идеи? Буду размещать любой дополнительный код по мере необходимости, спасибо!

РЕДАКТИРОВАТЬ:

Пример API JSON:

{
  "themes": [
    {
      "answer": 1,
      "question": 44438222,
      "title": "How many letters are in the alphabet?"
    },
    {
      "answer": 0,
      "question": 44438489,
      "title": "This is a random question"
    }
  ]
 }

Если я печатаюself.jsonResponse Я получаю это:

Optional(["themes": <__NSArrayI 0x6180002478f0>(
{
    "answer" = 7;
    "question" = 7674790;
    title = "This is the title of the question";
},
{
    "answer_" = 2;
    "question" = 23915741;
    title = "This is the title of the question";
}

Мой новый код:

struct Theme: Codable {
    var themes : [Question]
}

struct Question: Codable {
    var title: String
    var answer: Int
    var question: Int
}

...

if let decoded = try? JSONDecoder().decode(Theme.self, from: data) {
    print("decoded:", decoded)
} else {
    print("Not working")
}

Ответы на вопрос(3)

Ваш ответ на вопрос