Using `DispatchGroup` or some concurency construct to load data and populate cells in `UITableViewController` sequentially
问题 Platform: I am on swift 4 and xcode 11.4 Use case and desired behavior The app is loading a feed with potentially 100s or 1000s of items, let's say 500 items. The 500 items will be grabbed once using Amplify 's GraphQL query, then each item will then load additional data. The data will populate the cells in a UITableViewController . Ideally this process would happen in the following exact sequence: query 500 items cell_1 load additional data. cell_1 render data and display in