一网通办ios
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 line
481 B

  1. //
  2. // ImagePicker.swift
  3. // im-client-ios
  4. //
  5. // Created by 北京居家科技有限公司 on 2022/1/4.
  6. //
  7. import Foundation
  8. import SwiftUI
  9. struct ImagePicker: UIViewControllerRepresentable {
  10. typealias UIViewControllerType = WebViewUI
  11. func makeUIViewController(context: Context) -> WebViewUI {
  12. let picker = WebViewUI()
  13. return picker
  14. }
  15. func updateUIViewController(_ uiViewController: WebViewUI, context: Context) {
  16. }
  17. }