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

Call async function in tableview

Forums > Swift

I have a async function within a tableview function. I want to use the result of the function in my text label. But I don't know how to wait until it's finisched

     override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = self.tableView.dequeueReusableCell(withIdentifier: "groupDetail", for: indexPath)
    let group = trainingGroups[indexPath.row]
        cell.textLabel?.text = group.name
         self.getTrainerByID(trainerId: group.trainer_id_main, completion: { [self] (isRead, err,  trainer) in
            if isRead {
             cell.detailTextLabel?.text = trainer
                trainerMain = trainer!
             }else {
                 cell.detailTextLabel?.text = "Onbekend"
      cell.detailTextLabel?.text = group.trainer_id_main
      cell.layer.masksToBounds = true
      cell.layer.borderWidth = 0.25
      cell.layer.shadowOffset = CGSize(width: -1, height: 1)
      let borderColor: UIColor =  UIColor(red: 0, green: 45/255, blue: 114/255, alpha: 1)
      cell.layer.borderColor = borderColor.cgColor
      cell.accessoryType = .disclosureIndicator
      cell.tintColor = UIColor.white

      return cell

    }

    How do I make te return of te cell wait until the getTrainerByID is finished?

    Best regards,

    Armand

3      

BUILD THE ULTIMATE PORTFOLIO APP Most Swift tutorials help you solve one specific problem, but in my Ultimate Portfolio App series I show you how to get all the best practices into a single app: architecture, testing, performance, accessibility, localization, project organization, and so much more, all while building a SwiftUI app that works on iOS, macOS and watchOS.

Get it on Hacking with Swift+

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.