ios - 当应用程序未运行 IOS 时播放警报声音
<p><p>我一直在开发 IOS 警报应用程序。我将在应用程序中创建警报的位置。所以我需要闹钟在 IOS 中作为“时钟”应用程序工作。</p>
<p>当闹钟时间到达并且应用程序未运行时。警报声将播放,用户可以通过单击取消或打盹来停止它..</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>对于您需要使用的警报 <code>UILocalNotification</code> 您可以使用应用程序设置警报时间表,如下所示:</p>
<pre><code>- (void)scheduleLocalNotificationWithDate:(NSDate *)fireDate {
UILocalNotification *localNotification = [ init];
;
;
;
[ scheduleLocalNotification:localNotification];
}
</code></pre>
<p>这里有两个 <code>Github</code> 链接,例如代码或警报,但 UILocalNotification 没有任何设置贪睡的方法:</p>
<p> <a href="https://github.com/retsohuang/AlarmClock" rel="noreferrer noopener nofollow">https://github.com/retsohuang/AlarmClock</a> </p>
<p> <a href="https://github.com/bauerjon/Alarm-Clock-iOS" rel="noreferrer noopener nofollow">https://github.com/bauerjon/Alarm-Clock-iOS</a> </p></p>
<p style="font-size: 20px;">关于ios - 当应用程序未运行 IOS 时播放警报声音,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/32627322/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/32627322/
</a>
</p>
页:
[1]