使用したサーバーのリンクhttp://stefan.hafeneger.name/download/PushMeBabySource.zip
PushMeBabyサーバーを使用し、証明書とプロビジョニングプロファイルを使用してアプリをプッシュすると、アプリケーションを初めて実行したときにのみ、デバイスにアラートの形式で通知され、メソッドで記述されたステートメントがコンソールに出力されましたが、アプリケーションを複数回実行している間テストでは、デバイス トークンのみが返されます。次のメソッドはまったく実行されません。この問題の解決を手伝ってください。
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
for (id key in userInfo) {
NSLog(@”key: %@, value: %@”, key, [userInfo objectForKey:key]);
UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@”alert” message:key delegate:self cancelButtonTitle:@”ok” otherButtonTitles:nil];
[alert show];
/*if(key)
{
UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@”alert” message:@”this is in application” delegate:self cancelButtonTitle:@”ok” otherButtonTitles:nil];
[alert show];
}*/
}
}
できるだけ早く助けてください