我正在制作一个我正在使用苹果推送通知的应用。当我的应用处于后台状态时,我可以接收通知作为横幅,但当我的应用处于活动状态时,我能够显示通过此代码收到通知的提醒: -
(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
UIApplicationState state = [application applicationState];
if (state == UIApplicationStateActive) {
NSString *cancelTitle = @"Close";
NSString *showTitle = @"Show";
NSString *message = [[userInfo valueForKey:@"aps"] valueForKey:@"alert"];
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Some title"
message:message
delegate:self
cancelButtonTitle:cancelTitle
otherButtonTitles:showTitle, nil];
[alertView show];
} else {
//Do stuff that you would do if the application was not active
}
}
但我想将通知显示为横幅。我会为此做些什么?请建议。
答案 0 :(得分:2)
如果您的应用处于有效状态(在前台运行),则无法将推送通知直接发送到您的应用。通知中心不会处理通知。
你必须自己实施某种旗帜。