macOS 应用创建app壳子遇到的问题

编程入门 行业动态 更新时间:2024-10-24 21:23:17

macOS 应用创建app<a href=https://www.elefans.com/category/jswz/34/1676855.html style=壳子遇到的问题"/>

macOS 应用创建app壳子遇到的问题

首先使用的是wkwebView,创建了对指定地址的请求,并调用其方法加载网页。

问题1:遇到了自身公司pc链接后,页面某些图片不显示问题。

解决方案:

不显示的头像的链接,大多都是http协议的,兼容http协议需要在info里面设置一个App Transport Security Settings字典,字典设置键值对Allow Arbitrary Loads:YES。

问题2: 无法加载出网页,空白页。

解决方案:

想要访问外部链接,需要在 info里,App Sandbox 勾选 

 

代码如下:

import Cocoa
import WebKitclass ViewController: NSViewController, WKNavigationDelegate {@IBOutlet weak var webView: WKWebView!override func viewDidLoad() {super.viewDidLoad()// Do any additional setup after loading the view..webView.navigationDelegate = selfif let url =  URL(string: "某链接") {let request = URLRequest(url: url)self.webView.load(request)}}func webView(_ webView: WKWebView, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {guard let serverTrust = challenge.protectionSpace.serverTrust  else {completionHandler(.useCredential, nil)return}let credential = URLCredential(trust: serverTrust)completionHandler(.useCredential, credential)}override var representedObject: Any? {didSet {// Update the view, if already loaded.}}}

更多推荐

macOS 应用创建app壳子遇到的问题

本文发布于:2024-02-10 19:09:42,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1676849.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:壳子   macOS   app

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!