GO FURTHER, FASTER: Try the Swift Career Accelerator today! >>

Pass an Int from UIKit to SwiftUI

Forums > SwiftUI

In the case below, I want to be able to change the value of the count to a property of the view controller, based on the lifecycle I could use a Coordinator and set the delegate but what am I even delegating off? 🤔

protocol MyRoutesSectionViewControllerRepresentable: UIViewControllerRepresentable {
  var myRoutesSectionViewObject: MyRoutesSectionViewObject { get set }
}

class MyRoutesSectionViewObject: ObservableObject {
  var title: String
  var iconString: String
  @Published var count: Int
  var badgeIconString: String?

  init(title: String, iconString: String, count: Int, badgeIconString: String? = nil) {
    self.title = title
    self.iconString = iconString
    self.count = count
    self.badgeIconString = badgeIconString
  }
}

struct BMPlannedRoutesView: MyRoutesSectionViewControllerRepresentable {
  @ObservedObject var myRoutesSectionViewObject = MyRoutesSectionViewObject(title: "Planned",
                                                                   iconString: "plannedIcon",
                                                                   count: 0)

  func makeUIViewController(context: Context) -> BMPlannedRoutesViewController {
    return BMPlannedRoutesViewController.instantiateFromStoryboard(name: "MyRoutes")
  }

  func updateUIViewController(_ uiViewController: BMPlannedRoutesViewController, context: Context) {
    uiViewController.dottedArrowView.isHidden = true
  }
}

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 February 9th.

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.