迅速。在屏幕不在后台时接收远程通知时创建横幅

时间:2016-04-04 05:41:03

标签: swift background notifications banner

以下是我收到通知时的代码。我知道我可以使用PFPush来创建警报,但我觉得这不是一个好方法。有没有办法创建横幅而不是警报?

func application(application: UIApplication,  didReceiveRemoteNotification userInfo: [NSObject : AnyObject],  fetchCompletionHandler completionHandler: (UIBackgroundFetchResult) -> Void) {
    NSNotificationCenter.defaultCenter().postNotificationName("getMessage", object: nil)
    if application.applicationState == UIApplicationState.Active {
        //PFPush.handlePush(userInfo)
    }
    completionHandler(UIBackgroundFetchResult.NewData)
}

0 个答案:

没有答案