1. 程式人生 > >iOS 極光推送接收自定義訊息

iOS 極光推送接收自定義訊息

//新增監聽者

    NSNotificationCenter *defaultCenter = [NSNotificationCenter defaultCenter];

    [defaultCenter addObserver:self selector:@selector(networkDidReceiveMessage:)

                          name:kJPFNetworkDidReceiveMessageNotification object:nil];

//在APP開啟的情況下,接收自定義的方法

- (void)networkDidReceiveMessage:(NSNotification *)notification {

    //處理通知的方法

NSDictionary *userInfo = [notification userInfo];

}
--------------------- 
作者:京津追夢人 
來源:CSDN 
原文:https://blog.csdn.net/wwc455634698/article/details/55257904 
版權宣告:本文為博主原創文章,轉載請附上博文連結!