是否可以创建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];
答案 0 :(得分:1)
不幸的是,如果您想要声音,除非用户已进入常规设置并自行禁用振动,否则无法禁用振动。