確実に呼び出されているデバッガーを使用しています[alertView show];
が、ダイアログが表示されません。ダイアログを表示するには、他に何をする必要がありますか?
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
{
if( [[userInfo objectForKey:@"aps"] objectForKey:@"alert"] != NULL)
{
NSString *msg = [[userInfo objectForKey:@"aps"] objectForKey:@"alert"];
if(msg != nil) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Usage Alert"
message:msg delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Ok", nil];
[alertView show];
}
}
}