2

是否可以使用 iPhone 上的音量控制拍照?

理想情况下,takePicture()当按下音量按钮时会调用该方法。

4

2 回答 2

1

Add an event listener.

Titanium.Media.addEventListener('volume', function(e) {
    Ti.Media.takePicture();    
});

Make sure the event listener is added when the camera is already shown. Docs here: http://docs.appcelerator.com/titanium/latest/#!/api/Titanium.Media-method-takePicture

于 2012-11-12T17:57:04.977 回答
-2

旧的,但仍然相关:程序访问 iPhone 音量按钮

还可以考虑为您的问题、objective c、ios、xcode 等添加更好的标签。

于 2012-11-12T17:18:31.657 回答