初めて APNS で遊んでいるときに、iOS 5.0.1 デバイスで概念実証を実行しようとしましたdidFailToRegisterForRemoteNotificationsWithError
が、起動しました。UIAlertView
エラーを通知するために を表示するため、起動されたことがわかります。
- (void)application:(UIApplication*)application
didFailToRegisterForRemoteNotificationsWithError:(NSError*)error
{
// Inform the user that registration failed
NSString* failureMessage = @"There was an error while trying to \
register for push notifications.";
UIAlertView* failureAlert = [[UIAlertView alloc] initWithTitle:@"Error"
message:failureMessage
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[failureAlert show];
[failureAlert release];
}
エラーに関する詳細情報を取得するにはどうすればよいですか?