Why does using Nsurl request keeps telling me to rename to “init(url)”

前端 未结 3 1776
走了就别回头了
走了就别回头了 2021-01-16 22:33

Also trying to add the ability to detect a video and download it to the application in short a web-based app used for download any kind of video and has the ability to store

3条回答
  •  北荒
    北荒 (楼主)
    2021-01-16 22:53

    Use URL and URLRequest instead NSURL and NSURLRequest in Swift.

    let url = URL.init(string: "https://www.google.com")
    let request = URLRequest.init(url: url!)
    Webview.loadRequest(request)
    

    For Reference you can refer : Reference

提交回复
热议问题