UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

SOLVED: problem shuffling array

Forums > Swift

Hello. I am creating a multiple choice quiz. I have an array of questions that are loaded from a .json file. When I try to shuffle the array, Xcode 11 gives me the following error: Cannot use instance member 'questions' within property initializer; property initializers run before 'self' is available, ContentView.swift, Below is a few lines of code:


import SwiftUI

struct ContentView: View {
    let questions: [question] = Bundle.main.decode("questions.json")
    let randomQuestions=questions.shuffled()

What am I doing wrong?```

2      

You are trying to use a property of the struct before the struct is completely initialized. You can do this instead:

struct ContentView: View {
    let questions: [question] = Bundle.main.decode("questions.json")
    let randomQuestions: [question]

    init() {
        randomQuestions = questions.shuffled()
    }

3      

Hacking with Swift is sponsored by Essential Developer

SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until April 28th.

Click to save your free spot now

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.