【发布时间】:2017-02-19 04:54:54
【问题描述】:
我在 Swift 代码中有一个函数 scheduleFutureLocalNotifications(),它创建了 64 个 UILocalNotification,它们会在未来触发。
最初该函数是在viewDidLoad() 调用的,但这导致启动应用程序时出现延迟。
接下来,该函数在活动应用程序期间被调用,但这会导致用户界面出现不可预知的暂停或滞后。
最后,该功能被移动到当应用程序在收到UIApplicationDidEnterBackground 通知后转换到后台时触发,但这会导致 iOS 短暂滞后,因为本地通知是在后台准备的。这在旧设备上显得更加明显。
问题:
1 - 如何减少延迟并提高用户界面响应能力 创建本地通知?
2 - 有什么更好的技术可以用来安排 64 通知?
3 - 函数
scheduleFutureLocalNotifications()还能在什么时候被调用?
代码:
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
scheduleFutureLocalNotifications()
}
func scheduleFutureLocalNotifications() {
// Remove all previous local notifications
let application = UIApplication.sharedApplication()
application.cancelAllLocalNotifications()
// Set new local notifications to fire over the coming 64 days
for nextLocalNotification in 1...64 {
// Add calendar day
let addDayComponent = NSDateComponents()
addDayComponent.day = nextLocalNotification
let calendar = NSCalendar.currentCalendar()
let nextDate = calendar.dateByAddingComponents(addDayComponent, toDate: NSDate(), options: [])
// Set day components for next fire date
let nextLocalNotificationDate = NSCalendar.currentCalendar()
let components = nextLocalNotificationDate.components([.Year, .Month, .Day], fromDate: nextDate!)
let year = components.year
let month = components.month
let day = components.day
// Set notification fire date
let componentsFireDate = NSDateComponents()
componentsFireDate.year = year
componentsFireDate.month = month
componentsFireDate.day = day
componentsFireDate.hour = 0
componentsFireDate.minute = 0
componentsFireDate.second = 5
let fireDateLocalNotification = calendar.dateFromComponents(componentsFireDate)!
// Schedule local notification
let localNotification = UILocalNotification()
localNotification.fireDate = fireDateLocalNotification
localNotification.alertBody = ""
localNotification.alertAction = ""
localNotification.timeZone = NSTimeZone.defaultTimeZone()
localNotification.repeatInterval = NSCalendarUnit(rawValue: 0)
localNotification.applicationIconBadgeNumber = nextLocalNotification
application.scheduleLocalNotification(localNotification)
}
}
}
【问题讨论】:
-
通过将对
scheduleFutureLocalNotifications的调用包装在dispatch_async中,将代码发送到后台线程 -
谢谢@Paulw11 你能进一步解释一下吗?您是否建议执行以下操作? dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), {() -> self.scheduleFutureLocalNotifications() 中的无效})
-
你能解释一下它到底是做什么的吗?
标签: ios swift optimization nsdate uilocalnotification