如何向推送通知警报视图添加操作?
Posted
技术标签:
【中文标题】如何向推送通知警报视图添加操作?【英文标题】:How to add action to pushnotification alertview? 【发布时间】:2012-07-18 14:20:39 【问题描述】:我有一个应用程序,我在其中添加推送通知。我将推送通知显示为 aletview。有两个按钮视图和取消。当用户单击视图按钮时,我需要转到特定的视图控制器。任何人都可以帮助我实现这一目标吗?这就是我处理通知的方式。`
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
NSLog(@"########################################didReceiveRemoteNotification****************************###################### %@",userInfo);
//check application in forground or background
if(application.applicationState == UIApplicationStateActive)
//NSLog(@"FOreGround");
//////NSLog(@"and Showing %@",userInfo)
else
NSDictionary *curDict= [userInfo objectForKey:@"aps"];
UIAlertView *connectionAlert = [[UIAlertView alloc] initWithTitle:@"app" message:[NSString stringWithFormat:@"%@",[curDict objectForKey:@"alert"]] delegate:self cancelButtonTitle:@"View" otherButtonTitles:@"Cancel",nil];
[connectionAlert show];
[connectionAlert release];
[UIApplication sharedApplication].applicationIconBadgeNumber =[[curDict objectForKey:@"badge"] intValue];
`
【问题讨论】:
【参考方案1】:您只需要实现UIAlertViewDelegate
并调用委托方法
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
switch(buttonIndex)
case 0: // do something
break;
case 1: // do something else
break;
【讨论】:
我是在 appdelegate 中做的。是否可以在那里添加?以上是关于如何向推送通知警报视图添加操作?的主要内容,如果未能解决你的问题,请参考以下文章
从 parse.com 控制台接收推送时显示警报对话框而不是通知