简体   繁体   中英

How to use EnvironmentObject in UIKit ViewController

I'm building a SwiftUI app that wraps UIKit ViewController through UIViewControllerRepresentable . The goal is to display a UITextView in my SwiftUI app. The implementation of this is simple, like this:

// iOSTextView.swift
import SwiftUI

struct iOSTextView: UIViewControllerRepresentable {
    @Binding var document: Document
    @EnvironmentObject var userData: UserData
    
    func makeUIViewController(context: Context) -> some UIViewController {
        let view = iOSTextViewController()
        return view
    }
    
    func updateUIViewController(_ uiViewController: UIViewControllerType, context: Context) {

    }
}

Notice the EnvironmentObject named UserData . It's a class that holds some general data that should be shared with every view in my app, including the UITextView ViewController.

// UserData.swift
import Foundation

final class UserData: ObservableObject  {
    @Published var someValue = 1
}

Below is my iOSTextViewController ViewController:

// iOSTextViewController.swift
import UIKit
import SwiftUI

class iOSTextViewController: UIViewController, UIGestureRecognizerDelegate {
    @EnvironmentObject var userData: UserData

    // Create a Text View
    let textView: UITextView = {
        let tv = UITextView()
        return tv
    }()
    
    override func viewDidLoad() {
        super.viewDidLoad()
        
        // Place the Text View on the view
        view.addSubview(textView)
        textView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor).isActive = true
        textView.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor).isActive = true
        textView.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor).isActive = true
        textView.bottomAnchor.constraint(equalTo: view.safeAreaLayoutGuide.bottomAnchor).isActive = true
        
        // create attributed string
        let string = "This is a string."
        var attributes: [NSMutableAttributedString.Key: Any] = [
            .foregroundColor: UIColor.red,
            .font: UIFont(name: "Courier", size: 12)!
        ]
        let myAttrString = NSMutableAttributedString(string: string, attributes: attributes)
        textView.attributedText = myAttrString
    }    
}

My questions:

  1. How can I pass UserData to my ViewController named iOSTextViewController ? Should I use a Coordinator? How can I use it to make the EnvironmentObject available and synchronized inside my ViewController?

  2. In the same way, how can I share my document binding, since it's a document-based app?

This can be accomplished in SwiftUI relatively easily, to pass your UserData variable to any object you can make a Published variable in a separate class. Here is an example

class UserDataManager: ObservableObject { 

     @Published var userData: UserData = UserData(variable1, variable2...)

}

Then in your View struct you can simply do

struct TextView: View { 
    
   @ObservedObject var userDataManager = UserDataManager()

   var body : some View {
     
      TextField("Enter your data", text: $userDataManager.userData.name)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM