我试图从专辑中获取最后一张图片并在社交媒体上分享,但每当我尝试搜索解决方案时,他们都是在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
答案 0 :(得分:0)
根据文档https://developer.xamarin.com/api/type/Foundation.NSSortDescriptor/#Public_Constructors
在构造函数中如下所示:
fetchOptions.SortDescriptors = new NSSortDescriptor[] {new NSSortDescriptor("creationDate", false)};