gpt4 book ai didi

ios - 在哪里/如何手动处理 WKWebView estimatedProgress 的观察者

转载 作者:行者123 更新时间:2023-11-29 12:09:57 24 4
gpt4 key购买 nike

我一直在尝试在 Xamarin ios UIViewController 的“estimatedProgress”属性上使用 KVO 来跟踪 WKWebView 上的估计加载进度。

我这样添加一个观察者:

public override void ViewDidLoad()
{
base.ViewDidLoad();
...
WkView.AddObserver("estimatedProgress", NSKeyValueObservingOptions.New, ProgressObserver);
...
}

ProgressObserver 看起来像这样:

public void ProgressObserver(NSObservedChange nsObservedChange)
{
Console.WriteLine("Progress {0}", WkView.EstimatedProgress);
}

当我运行它时,它返回如下内容:

2015-11-17 09:29:15.345 testappiOS[10056:1381155] Progress 0.1
2015-11-17 09:29:15.636 testappiOS[10056:1381155] Progress 0.285892975242258
2015-11-17 09:29:15.949 testappiOS[10056:1381169] Warning: observer object was not disposed manually with Dispose()

显然,谷歌搜索“Warning: observer object was not disposed manually with Dispose()”会返回有关需要手动处置观察者的信息。但我一直无法弄清楚如何将其应用于我的问题。

谁能对此提供一些见解?

最佳答案

首先你需要创建一个私有(private)变量来保存一次性观察者:

private IDisposable progressObserver;

然后从 AddObserver 返回值分配它,但将其放置到 ViewWillAppear 方法:

this.progressObserver = webView.AddObserver(
"estimatedProgress",
NSKeyValueObservingOptions.New,
ProgressObserver);

ViewWillDisappear中处理:

this.progressObserver.Dispose();

关于ios - 在哪里/如何手动处理 WKWebView estimatedProgress 的观察者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33752501/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com