这里我有从库中选择图像的代码,但是如何从图库中选择多个图像?
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) {
}
});
答案 0 :(得分:4)
答案 1 :(得分:2)
Titanium或原生iOS都不支持选择多个图像。
您可以尝试使用此iOS Asset Library Access模块。但是,我读到它存在一些问题。