我想将闹钟设置为默认的CLOCK应用。我尝试使用<form id="myform">
<input type="radio" name="drink" id="radioOne" checked value="tea" />
<label for="radioOne">Tea</label>
<br />
<input type="radio" name="drink" id="radioTwo" value="coffee" />
<label for="radioTwo">Coffee</label>
<br />
<button data-dojo-type="dijit/form/Button" type="button">
Show form submit value
<script type="dojo/on" data-dojo-event="click">
require(["dojo/dom"], function(dom){ with(dom.byId('myform'))with(elements[0])with(elements[checked?0:1])alert(name+'='+value); return false; });
</script>
</button>
</form>
但它只能像Local Notification一样。
如果他睡觉,我的目标就是唤醒一个人。我们可以在iOS中实现这一目标吗?
答案 0 :(得分:4)
您无法像默认时钟应用程序那样设置闹钟。您所能做的就是使用LocalNotification
并为其添加声音(最多30秒)。如果手机处于静音模式,声音将无法播放。