私は同じチュートリアルに従いました。
アプリが通知センターにリストされていること、およびアラートの種類が「なし」ではなく「何でも」であることを確認してください。
3つの条件で通知を確認する必要があります。
アプリが開いているとき、バックグラウンド、閉じているとき。
そのためには、これらのメソッドをチェックする必要があります
// To Register your device token
- (void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken
//If your app is not able to register
- (void)application:(UIApplication*)application didFailToRegisterForRemoteNotificationsWithError:(NSError*)error
{}
//Your app receives push notification.
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
{
    UIApplicationState state = [application applicationState];
    // If your app is running
    if (state == UIApplicationStateActive)
    {
        //You need to customize your alert by yourself for this situation. For ex,
        NSString *cancelTitle = @"Close";
        NSString *showTitle = @"Get Photos";
        NSString *message = [[userInfo valueForKey:@"aps"] valueForKey:@"alert"];
        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@""
                                                            message:message
                                                           delegate:self
                                                  cancelButtonTitle:cancelTitle
                                                  otherButtonTitles:showTitle, nil];
        [alertView show];
        [alertView release];
    }
    // If your app was in in active state
    else if (state == UIApplicationStateInactive)
    {
    }
}