local1 로컬 HTML파일을 UIWebView, WKWebView에 표시하기 1. UIWebView, Bundle.main.path 를 이용하는 방법 import WebKit @IBOutlet weak var webView: UIWebView! override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view guard let localFilePath = Bundle.main.path(forResource: "test", ofType: "html") else { print("path is nil") return } let url = URL(fileURLWithPath: localFilePath) let request = URLRequest(url: url) webVie.. 2019. 12. 27. 이전 1 다음