我正在申请我需要检查苹果手表静音按钮是开启还是关闭。
在iPhone中,我们可以使用let someContextNeedsRendering;
function createDrawWrapper(origFn) {
const newFn = createWrapper(origFn);
return function(...args) {
// a rendering function was called so we need to copy are drawingBuffer
// to the canvas for this context after the current event.
this._needComposite = true;
if (!someContextsNeedRendering) {
someContextsNeedRendering = true;
setTimeout(dealWithDirtyContexts, 0);
}
return newFn.call(this, ...args);
};
}
function dealWithDirtyContexts() {
someContextsNeedRendering = false;
renderAllDirtyVirtualCanvas();
});
框架检测到它,但在AudioToolbox
中没有名称为watch OS
的框架。
所以我的问题是我们怎么能检测到苹果手表静音按钮是开还是关。
答案 0 :(得分:1)
经过搜索后,我得出结论,目前无法检查Apple Watch静音状态。