如何设置每天的通知数量?

时间:2016-06-24 02:05:46

标签: ios swift notifications

我面对我的应用程序的一个小问题。  用户通过滑块每天选择一个特定数量的通知,该号码将被存储在一个变量中(10个通知是最大值),并且他会在当天的随机时间内收到通知。

但我不知道如何设置所需通知的数量 在我的代码中......

这里是代码!

@IBAction func send(sender: AnyObject) {
    let notification = UILocalNotification()
    notification.alertBody = myArray[Int(arc4random_uniform(UInt32(myArray.count)))] // text that will be displayed in the notification
    notification.fireDate = NSDate(timeIntervalSinceNow: Double(arc4random_uniform(86400)))// 84600 Is the number of seconds in a day 
    notification.soundName = UILocalNotificationDefaultSoundName // play default sound
    notification.repeatInterval = NSCalendarUnit.NSDayCalendarUnit// this line defines the interval at which the notification will be repeated

    UIApplication.sharedApplication().scheduleLocalNotification(notification)

}

谢谢。

0 个答案:

没有答案