使用Xamarin.IOS获取相册的最新图像

时间:2016-05-26 05:03:04

标签: c# ios xamarin xamarin.ios

我试图从专辑中获取最后一张图片并在社交媒体上分享,但每当我尝试搜索解决方案时,他们都是在Objective-C或Swift中我都不太懂任何一种语言。

我搜索了解决方案并获得了Objective-C中的解决方案: Get last image from Photos.app?

我在Xamarin.IOS中尝试将代码从Objective-C转换为C#时遇到问题

转换时遇到的主要问题是这一行

fetchOptions.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"creationDate" ascending:NO]];

我在Xamarin.IOS中找不到sortDescriptorWithKey

1 个答案:

答案 0 :(得分:0)

根据文档https://developer.xamarin.com/api/type/Foundation.NSSortDescriptor/#Public_Constructors

在构造函数中

如下所示:

fetchOptions.SortDescriptors = new NSSortDescriptor[] {new NSSortDescriptor("creationDate", false)};