How to manage cookies with UIWebView in Swift

后端 未结 8 861
心在旅途
心在旅途 2020-12-02 11:53

What about have a topic where people can easily see how to manage cookies in a webview using the new language Swift? If you check in internet you won\'t find anything intere

8条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-02 12:10

    swift 3

        let storage = HTTPCookieStorage.shared
    
        for cookie in storage.cookies! {
            storage.deleteCookie(cookie)
        }
    

提交回复
热议问题