8
誰もが、私は、コードを以下のが、まだそれに問題を取得して実施してきたようにiOSの10のためにプッシュ通知を実装で私を助けることができます:iOS 10のプッシュ通知を実装する方法[目的C]?
#define SYSTEM_VERSION_GRATERTHAN_OR_EQUALTO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
if(SYSTEM_VERSION_GRATERTHAN_OR_EQUALTO(@"10.0"))
{
UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
center.delegate = self;
[center requestAuthorizationWithOptions:(UNAuthorizationOptionSound | UNAuthorizationOptionAlert | UNAuthorizationOptionBadge) completionHandler:^(BOOL granted, NSError * _Nullable error){
if(!error){
[[UIApplication sharedApplication] registerForRemoteNotifications];
}
}];
}
else {
// Code for old versions
}
私はその
不明な受信機UIUserNotificationCenter
示唆エラーを取得しています
ありがとうございます!
http://stackoverflow.com/questions/39382852/didreceiveremotenotification-not-called-ios-10これを見ます/ 39383027#39383027 –