我们收到推送通知时如何开启或关闭?

问题描述 投票:0回答:1

在我的应用程序中,我需要设置一个通知设置开关。我放了一个声音开关,所以当开关关闭时我会收到通知,声音就不会响了。这是有效的,因为当声音开关关闭时,我发送没有声音的JSON。现在我想要相同的振动功能。当振动开关打开时,我的设备应该在收到推送通知时振动,当振动开关关闭时它不应振动。

ios swift push-notification apple-push-notifications
1个回答
0
投票

首先导入这些:

import UIKit
import AudioToolbox

然后在开关动作中将此代码写入振动:

AudioServicesPlayAlertSound(SystemSoundID(kSystemSoundID_Vibrate))            
© www.soinside.com 2019 - 2024. All rights reserved.