을 사용자가 도청 여부를 확인할 수 있습니다 :) 감사합니다, 또는 앱은 백그라운드에서 또는 활성화됩니다. 당신은 당신이 다음 응용 프로그램 내에서 그것을 얻을 수 없습니다 알림 센터에서 알림을 무시하면
-(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler{
if(application.applicationState == UIApplicationStateActive) {
//app is currently active, can update badges count here
}else if(application.applicationState == UIApplicationStateBackground){
//app is in background, if content-available key of your notification is set to 1, poll to your backend to retrieve data and update your interface here
}else if(application.applicationState == UIApplicationStateInactive){
//app is transitioning from background to foreground (user taps notification), do what you need when user taps here
}
할 수 없습니다. – Avi
알림이 알림 센터에있는 경우 알림을받습니다. 완료 방법 –
서버에 질의하여 보류 알림이 있는지 확인해야합니다. – jcesarmobile