1

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

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

自定义视图:

public sealed class Scanner : View
{
}

主页.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);
            }
        }
    }
}

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

我没有找到任何人尝试使用VNDocumentCameraViewControllerXamarin Forms。我做错了什么?还是有错误?

4

1 回答 1

2

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

自定义渲染器

[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);
            }
        }
    }
}
于 2020-09-18T15:33:46.573 回答