本文介绍了振动和声音到 LocalNotifications的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我如何向 LocalNotifaction 添加振动和声音

How I add vibrate and sound to LocalNotifaction

代码:

UILocalNotification *notification = [[UILocalNotification alloc]init];

NSDate *firedate = settime.date;
[notification setFireDate:firedate];
[notification setAlertBody:@"הלכה יומית"];
[notification setAlertAction:@"הלכה"];



[[UIApplication sharedApplication]scheduleLocalNotification:notification];

推荐答案

可以设置声音:

notification.soundName = @"yourSound.aiff" ;   // see also UILocalNotificationDefaultSoundName

但振动不在您的控制范围内:

But vibration is outside your control:

不幸的是,如果您想要声音,则无法禁用振动,除非用户已进入常规设置"并自行禁用振动.-shabzco

UILocalNotification API 允许您设置系统默认声音、选择声音或没有声音,如果您有声音,它会在适当的情况下振动(即用户启用了振动).但除此之外,您无法控制是否发生振动或持续多长时间.-yuji

这篇关于振动和声音到 LocalNotifications的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 12:40