在触发通知的同时,是否可以通过本地通知添加任何振动效果。

let AlarmNotification: UILocalNotification = UILocalNotification()
    AlarmNotification.alertBody = title
    AlarmNotification.alertAction = "Open App"
    AlarmNotification.category = "AlarmCategory"

    AlarmNotification.soundName = soundName + ".mp3"
    AlarmNotification.timeZone = NSTimeZone.defaultTimeZone()
UIApplication.sharedApplication().scheduleLocalNotification(AlarmNotification)

最佳答案

阅读指南,您只能将声音设置为警报

系统会显示警报消息,为应用程序添加徽章并播放
声音-通知中指定的内容。

链接:https://developer.apple.com/library/ios/documentation/iPhone/Reference/UILocalNotification_Class/

关于ios - UILocalNotification振动,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36548345/

10-13 03:58