场景
我正在Swift中构建一个iOS应用程序。一种功能是将实时视频源作为应用程序背景。视频提要源自使用sudo motion
在本地网络上的Raspberry Pi。 Motion已成功将提要托管在默认端口8081
上。
Swift应用程序有一个WKWebView
对象,其源指向我的Raspberry Pi的运动端口。
疑似问题
端口8081
上的网页不断刷新,以加载来自相机的最新帧。
问题
运行该应用程序时,供稿成功连接并加载了第一帧,偶尔会加载第二帧,但随后会中断。
在某些情况下,我在终端上收到以下错误消息:[ProcessSuspension] 0x282022a80 - ProcessAssertion() Unable to acquire assertion for process with PID 0
使我相信这是与网页不断刷新的性质有关的内存管理问题。
当前配置
当前,我对WKWebView
对象.load()的调用位于ViewController.swift
> override func viewDidLoad()
中。
建议的分辨率
我是否需要构建某种形式的循环结构,以便在其中加载框架,暂停执行,然后在几秒钟后调用WKWebView
重新加载新框架。
我对Swift还是很陌生,因此非常感谢我对问题格式的耐心。
答案 0 :(得分:1)
WkWebView和运动加载在iOS 11版本的Xcode 9中起作用,但在iOS 12中似乎不再起作用。您是正确的,该Webkit在第二张图像上崩溃了。
由于您是Swift的新手,因此建议您阅读有关委托的链接,因为我提供的此解决方案对您更有意义。 Swift Delegates 总而言之,“代表是一种设计模式,当特定事件发生时,该模式允许一个对象将消息发送到另一个对象。”
借助此解决方案/技巧,我们将使用WKNavigationDelegates中的多个来通知我们WkWebView在执行特定任务时,并为该问题注入解决方案。您可以在WKNavigationDelegates处找到WKWebKit拥有的所有代表。
以下代码可以在全新的iOS项目中使用,并替换ViewController.swift中的代码。它不需要接口构建器或IBOutlet连接。它将在该视图上创建一个Web视图,并指向地址192.168.2.75:6789。我加入了内联注释,试图解释代码的作用。
然后必须重置计数器,以便我们可以重复此过程,直到其他人提出更好的解决方案为止。
import UIKit
import WebKit
class ViewController: UIViewController, WKNavigationDelegate {
// Memeber variables
var m_responseCount = 0; /* Counter to keep track of how many loads the webview has done.
this is a complete hack to get around the webkit crashing on
the second image load */
let m_urlRequest = URLRequest(url: URL(string: "http://192.168.2.75:6789")!) //Enter your pi ip:motionPort
var m_webView:WKWebView!
override func viewDidLoad() {
super.viewDidLoad()
m_webView = WKWebView(frame: self.view.frame) // Create our webview the same size as the viewcontroller
m_webView.navigationDelegate = self // Subscribe to the webview navigation delegate
}
override func viewDidAppear(_ animated: Bool) {
m_webView.load(m_urlRequest) // Load our first request
self.view.addSubview(m_webView) // Add our webview to the view controller view so we can see it
}
// MARK: - WKNavigation Delegates
func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
print("decidePolicyFor navigationAction")
print(navigationAction.request) //This is the request to connect to the motion/pi server http::/192.168.2.75:6789
decisionHandler(.allow)
}
func webView(_ webView: WKWebView, decidePolicyFor navigationResponse: WKNavigationResponse, decisionHandler: @escaping (WKNavigationResponsePolicy) -> Void) {
print("decidePolicyFor navigationResponse")
print(navigationResponse.response) // This is HTML from the motion/rpi
/* We only want to load the html header and the first image
Loading the second image is causing the crash
m_responseCount = 0 - Header
m_responseCount = 1 - First Image
m_responseCount >= 2 - Second Image
*/
if(m_responseCount < 2)
{
decisionHandler(.allow)
}
else{
decisionHandler(.cancel) // This leads to webView::didFail Navigation Delegate to be called
}
m_responseCount += 1; // Incriment our counter
}
func webView(_ webView: WKWebView, didFail navigation: WKNavigation!, withError error: Error) {
/*
We have forced this failure in webView decidePolicyFor navigationResponse
by setting decisionHandler(.cancel)
*/
print("didFail navigation")
m_webView.load(m_urlRequest) //Lets load our webview again
m_responseCount = 0 /* We need to reset our counter so we can load the next header and image again
repeating the process forever
*/
}
func webViewWebContentProcessDidTerminate(_ webView: WKWebView) {
// If you find your wkwebview is still crashing break here for
// a stack trace
print("webViewWebContentProcessDidTerminate")
}
}
注意:由于Motion / Pi服务器响应为http而非https
,还需要将以下内容添加到info.plist文件中<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoadsInWebContent</key>
<true/>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
我鼓励您使用此基本示例并对其进行修改以适合您的应用程序需求。我也鼓励您发表自己的发现,因为我在使用与您完全相同的硬件时遇到了完全相同的问题,这不仅仅是解决方案,更是一种技巧。