HY!
我正在玩cordova一点点,很早就遇到了问题。我有一个以iOS为平台的Cordova 6.4项目,安装了XCode 8.2并安装了相机插件。
它也无法使用实际设备。
$(document).ready(function(){
$("#submitName").click(function(){
navigator.notification.alert(
$("#inputName").val(), // message
alertDismissed, // callback
'Game Over', // title
'Done' // buttonName
);
navigator.camera.getPicture(myResponse, myResponse, {destinationType: Camera.DestinationType.FILE_URI, sourceType: Camera.PictureSourceType.PHOTOLIBRARY})
})
});
function alertDismissed(){
// do something
}
function myResponse(answer){
alert(answer);
}
显示通知时,不会显示照片库。为什么?我甚至不知道是否要允许该应用访问该库。
我确信我的问题有一个非常简单的解决方案。