创建有声无振动的 UILocalNotification
Posted
技术标签:
【中文标题】创建有声无振动的 UILocalNotification【英文标题】:Create UILocalNotification with sound and no vibration 【发布时间】:2012-02-26 05:23:52 【问题描述】:是否可以创建 UILocalNotification 播放自定义声音但不振动手机?
编辑:这是我用来创建 UILocalNotification 的代码,它可以工作,但它会使手机振动。 我不想让手机振动,但我想播放声音。
UILocalNotification *notif = [[UILocalNotification alloc] init];
notif.fireDate = [NSDate dateWithTimeIntervalSinceNow:seconds];
notif.timeZone = [NSTimeZone defaultTimeZone];
//notif.alertBody = alertMessage;
//notif.alertAction = @"Show me";
notif.soundName = soundName;
notif.applicationIconBadgeNumber = 0;
NSDictionary *userDict = [NSDictionary dictionaryWithObject:soundName forKey:kCurrentSound];
notif.userInfo = userDict;
[[UIApplication sharedApplication] scheduleLocalNotification:notif];
[notif release];
【问题讨论】:
【参考方案1】:很遗憾,如果您想要声音,则无法禁用振动,除非用户已进入“常规设置”并自行禁用振动。
【讨论】:
以上是关于创建有声无振动的 UILocalNotification的主要内容,如果未能解决你的问题,请参考以下文章
语音学习笔记1------matlab实现自相关函数法基音周期提取