Hey Brian, super genius man!
Downloaded your code, was wondering if there's a difference between these two for dispatchGroup order Thanks man!
Your code:
dispatchGroup.enter()
Service.shared.fetchGames { (appGroup, err) in
self.games = appGroup
dispatchGroup.leave()
}
My code :
dispatchGroup.enter()
Service.shared.fetchGames { (apps, err) in
dispatchGroup.leave()
self.games = apps
}