Async filling array, but returning an empty one

45 Views Asked by At

I'm trying to make a application that uses a online rest API. It's retrieving the data via a URLSession. In the do{} method, the entire array is filled correctly. However, when I'm returning the array, all of a sudden it is completely empty. Can someone explain to me what I'm doing wrong?

// Makes a request to the API
func makeRequest(url: URL) -> Array<Any>{
    var allItems = [[ApiItem]]()

    // Make request
    URLSession.shared.dataTask(with: url) { (data, response, error) in
        guard let data = data else { return }

        // Do the request
        do{
            // Get the JSON
            let json = try JSONSerialization.jsonObject(with: data, options: .mutableContainers) as! [String: AnyObject]

            // Get the right entry
            let results = json["items"] as? [AnyObject]

            // Loop through the results
            for r in results! {
                // Create a item
                let item = ApiItem(json: r as! [String : Any])

                // Add them to the array
                allItems.append([item])

                print("Items in array after appending: \(allItems.count)") // The entire array gets correctly filled here
            }

        } catch let jsonErr{
            print("JSON ERROR! \(jsonErr)")
        }
    }.resume()

    return allItems // The array is empty right here
}
0

There are 0 best solutions below