本地通知只能振动苹果手表而不发出声音吗?

时间:2016-01-18 20:45:10

标签: ios notifications watchkit

我想在手机上安排本地通知。当手机被锁定且手表处于睡眠状态时,我希望通知振动手表但不播放声音。这可能吗?我的代码在iphone上运行以安排通知但不知道如何在手表上播放时抑制声音。

UILocalNotification *notification = [[UILocalNotification alloc] init];
        notification.fireDate = [[NSDate date] dateByAddingTimeInterval:60];
        notification.alertTitle = [NSString stringWithFormat:@"Hi # %d", i];
        notification.alertBody = @"Hello!";
        notification.soundName = UILocalNotificationDefaultSoundName;

        [[UIApplication sharedApplication] scheduleLocalNotification:notification];

1 个答案:

答案 0 :(得分:1)

您可以决定不设置声音名称,也不要选择在通知设置中使用声音。然后,如果还没有振动行为,则可以进行振动。