Xamarin Forms 中的 VNDocumentCameraViewController 冻结

VNDocumentCameraViewController in Xamarin Forms freezes

我想在带有自定义渲染器的 Xamarin Forms 应用程序中使用 iOS 13 中的新 VNDocumentCameraViewController。它可以工作,但有时几秒钟后相机预览会冻结,我无法在视图控制器上做任何事情。

为了重现错误,我将代码缩减为以下内容:

自定义视图:

public sealed class Scanner : View
{
}

MainPage.xaml

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:local="clr-namespace:App1"
             x:Class="App1.MainPage">
    <local:Scanner />
</ContentPage>

自定义渲染器

[assembly: ExportRenderer(typeof(App1.Scanner), typeof(App1.iOS.ScannerRenderer))]

namespace App1.iOS
{
    public class ScannerRenderer : ViewRenderer<Scanner, UIView>
    {
        protected override void OnElementChanged(ElementChangedEventArgs<Scanner> e)
        {
            base.OnElementChanged(e);

            if (this.Control == null)
            {
                VNDocumentCameraViewController scannerController = new VNDocumentCameraViewController();
                this.SetNativeControl(scannerController.View);
            }
        }
    }
}

主要发生在左右快速移动相机时,但有时也没有做任何事情。

我没有发现有人试图将 VNDocumentCameraViewController 与 Xamarin Forms 一起使用。我做错了什么?还是有错误?

我找到了解决方案...我为此苦苦挣扎了两天,现在我发现,垃圾收集器做了他妈的工作,并在一段时间后销毁了我的 scannerController / Dispose()VNDocumentCameraViewController。如果我将其更改为 class 成员,它会起作用:

自定义渲染器

[assembly: ExportRenderer(typeof(App1.Scanner), typeof(App1.iOS.ScannerRenderer))]

namespace App1.iOS
{
    public class ScannerRenderer : ViewRenderer<Scanner, UIView>
    {
        private VNDocumentCameraViewController scannerController;
    
        protected override void OnElementChanged(ElementChangedEventArgs<Scanner> e)
        {
            base.OnElementChanged(e);

            if (this.Control == null)
            {
                this.scannerController = new VNDocumentCameraViewController();
                this.SetNativeControl(this.scannerController.View);
            }
        }
    }
}