1

Mac OS X Lion 10.7.4
PhoneGap 1.2

我正在使用Ipad 6.0 Simulator构建我的应用程序。

var pictureSource,
  destinationType;

function onDeviceReady() {
  pictureSource = navigator.camera.PictureSourceType;
  destinationType = navigator.camera.DestinationType;

  if (noConnection()) alert("No internet connection. Working in offline mode.");

  deviceId = device.uuid;

  initDb();
  initFileSystem();
}

 $("#take-photo").click(function(e){
    e.preventDefault();
    navigator.camera.getPicture(onPhotoUriSuccess,
      onPhotoFail,
      {quality: 85, destinationType: destinationType.FILE_URI}
    );
    return false;
  });

看起来一切正常但我收到一个错误'no camera available'
也许是因为我正在运行我的应用程序 wuth Ipad 6.0 Simulator

我有Ipad 6.0 模拟器iOS 设备可用于我的应用程序。当我选择iOS 设备并运行时,我收到一条错误消息“没有任何已配置的 iOS 设备与兼容的 iOS 版本可用...”

如何使我的相机可用?

4

1 回答 1

7

你的怀疑是有根据的。模拟器不提供摄像头。

于 2013-01-21T12:09:05.467 回答