web-dev-qa-db-ja.com

swift

私はiOS開発に不慣れですが、アプリを作成し、設定された時間の毎日の通知を作成しようとしています。現在、通知は指定された日時に1回実行されます。 repeatIntervalメソッドを使用して毎日スケジュールする方法がわかりません。通知を毎日繰り返す最善の方法は何ですか?どんな助けでも大歓迎です(Y)。

    var dateComp:NSDateComponents = NSDateComponents()
    dateComp.year = 2015;
    dateComp.month = 06;
    dateComp.day = 03;
    dateComp.hour = 12;
    dateComp.minute = 55;
    dateComp.timeZone = NSTimeZone.systemTimeZone()

    var calender:NSCalendar = NSCalendar(calendarIdentifier: NSCalendarIdentifierGregorian)!
    var date:NSDate = calender.dateFromComponents(dateComp)!

    var notification:UILocalNotification = UILocalNotification()
    notification.category = "Daily Quote"
    notification.alertBody = quoteBook.randomQuote()
    notification.fireDate = date
    notification.repeatInterval = 

    UIApplication.sharedApplication().scheduleLocalNotification(notification)
15
JUSDEV

通知を繰り返すには、「HourCalendarUnit」や「DayCalendarUnit」などのNSCalendarUnit値を指定する必要があります。

このコードを追加して、ローカル通知を毎日繰り返します。

notification.repeatInterval = NSCalendarUnit.CalendarUnitDay
14
Vizllx

したがって、@ vizllxの上記のコードを少し変更する必要がありました。これが新しい行です:

notification.repeatInterval = NSCalendarUnit.Day 

これが私が使用した完全に機能する例です:

let notification = UILocalNotification()

  /* Time and timezone settings */
  notification.fireDate = NSDate(timeIntervalSinceNow: 8.0)
  notification.repeatInterval = NSCalendarUnit.Day
  notification.timeZone = NSCalendar.currentCalendar().timeZone
  notification.alertBody = "A new item is downloaded."

  /* Action settings */
  notification.hasAction = true
  notification.alertAction = "View"

  /* Badge settings */
  notification.applicationIconBadgeNumber =
  UIApplication.sharedApplication().applicationIconBadgeNumber + 1
  /* Additional information, user info */
  notification.userInfo = [
    "Key 1" : "Value 1",
    "Key 2" : "Value 2"
  ]

  /* Schedule the notification */
  UIApplication.sharedApplication().scheduleLocalNotification(notification)
}
13
Keith Holliday

var repeatInterval: NSCalendarUnit

=>ドキュメントは「通知を再スケジュールするカレンダー間隔」と言います。

そう:NSCalendarUnit.CalendarUnitDay

1
Daij-Djan

その他の回答は、iOS 10より前の古いローカル通知の使用方法を示しています。 iOS 10以降では、次のようにUNNotificationCenterを使用する必要があります。

    let content = UNMutableNotificationContent()
    content.title = "This will appear in bold, on it's own line."
    content.subtitle = "This will appear in bold, on it's own line, below the title."
    content.body = "This will appear as normal text, below the title and subtitle."

    let triggerInputForHourlyRepeat = Calendar.current.dateComponents([.minute], from: intendedFireDateVariable)
    let trigger = UNCalendarNotificationTrigger.init(dateMatching: triggerInput, repeats: true)

    let request = UNNotificationRequest(identifier: "someUniqueID", content: content, trigger: trigger)
    let unc = UNUserNotificationCenter.current()
    unc.add(request, withCompletionHandler: { (error) in
        /// Handle error
    })

役立つチュートリアル:

  1. https://www.techotopia.com/index.php/An_iOS_10_Local_Notification_Tutorial
  2. https://makeapppie.com/2016/11/21/manage-delete-and-update-notifications-in-ios-10/
0
Dave G