如何从titanium画廊select多个图像?

在这里,我有代码从图库中select图像,但我怎样才能从图库中select多个图像?

Ti.Media.openPhotoGallery({ // allowEditing:true, mediaTypes : [Ti.Media.MEDIA_TYPE_PHOTO], success : function(e) { alert(e); ImageView.image = e.media; //alert('height:'+e.media.height+'width:'+e.media.height); lblWidth.text = 'W :'+e.media.width; lblHeight.text ='H :' +e.media.height; }, cancel : function() { }, error : function(err) { } }); 

在这里,我发现了Android的模块

链接为市场(多图像select器)和链接源代码在github(TiMultiImagePicker)。 这里是链接 iOS模块。

Titanium和本机iOS均不支持select多个图像。

您可以试试这个iOS资源库访问模块。 不过,我读到它有一些问题。