一网通办ios
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

24 satır
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. }