gpt4 book ai didi

ios - Xamarin形式FFImageLoading图像未显示

转载 作者:行者123 更新时间:2023-12-01 20:03:05 25 4
gpt4 key购买 nike

我正在尝试在我们的Xamarin表单项目之一中使用FFImageLoading,但遇到一些奇怪的问题。

当我尝试将Sources="anyvalidimageurl"放在XAML上时,出现以下错误:

无效的XA​​ML:值不能为null。参数名称:'obj'

这是XAML:

<ffimageloading:CachedImage HorizontalOptions="Center" 
WidthRequest="300"
HeightRequest="300"
DownsampleToViewSize="true"
Source="http://myimage.com/image.png"
x:Name="imgImage">
</ffimageloading:CachedImage>

我试图通过代码加载图像,但iOS上未显示图像。

最佳答案

您需要将此添加到您的AppDelegate.cs

  public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
FFImageLoading.Forms.Touch.CachedImageRenderer.Init();
var dummy = new FFImageLoading.Forms.Touch.CachedImageRenderer();

global::Xamarin.Forms.Forms.Init();
LoadApplication(new App());

return base.FinishedLaunching(app, options);
}

有关更多信息,请参见 https://github.com/luberda-molinet/FFImageLoading/issues/55

关于ios - Xamarin形式FFImageLoading图像未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39545261/

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