【发布时间】:2013-06-24 18:20:57
【问题描述】:
我可以使用 UIImagePickerController 一次选择一张照片,但我需要使用 Xamarin 选择多个相册?
UIImagePickerController picker = new UIImagePickerController();
picker.AllowsEditing = false;
picker.SourceType = UIImagePickerControllerSourceType.SavedPhotosAlbum;
this.PresentModalViewController(picker, true);
【问题讨论】:
-
标准 UIImagePickerControl 不允许多选。
标签: c# ios iphone xamarin.ios xamarin