Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如标题所示,我UILocalNotification用于警报目的。但声音只播放一次。
UILocalNotification
我想一直播放声音,直到用户关闭通知。那可能吗?
如果可能,请发布一些示例代码。
多个通知当然可以,但我想让通知中心保持整洁。
您可以有一分钟的重复间隔。然后有一个声音播放 30 秒。在闹钟再次响起之前,当然会有 30 秒的静默。
将 设置fireDate为该特定时间,并将警报设置repeatInterval为NSDayCalendarUnit并安排警报[[UIApplication sharedApplication] scheduleLocalNotification: myNotification];
fireDate
repeatInterval
NSDayCalendarUnit
[[UIApplication sharedApplication] scheduleLocalNotification: myNotification];