我正在使用Xamarin.iOS,并使用FFImageLoading保存图像。我想获取保存图像的路径。
在information.FilePath
下面的代码中,null
是
return ImageService.Instance.LoadUrl(imageUrl).
WithCache(CacheType.All).
Success((information, result) =>
{
image.ImagePath = information.FilePath;
}).Retry(3, 5000);
有人知道从哪里获取图像路径吗?