重置iOS应用的推送通知设置?

时间:2011-09-08 19:46:26

标签: iphone ios notifications push reset

我最初使用下面的代码在沙盒模式下设置我的应用,我忘了添加 UIRemoteNotificationTypeAlert

[[UIApplication sharedApplication] registerForRemoteNotificationTypes:
 (UIRemoteNotificationTypeBadge|UIRemoteNotificationTypeSound)];

我已经按照http://developer.apple.com/library/ios/#technotes/tn2265/_index.html提到的那样,将时钟向前移动了一天,但是当我尝试添加 UIRemoteNotificationTypeAlert 时,它仍然只会初始化徽章< / strong>和声音提醒,我无法添加提醒 .....

我甚至尝试了新的应用ID和新的配置文件,但问题仍然存在,我该怎么做才能解决这个问题?

1 个答案:

答案 0 :(得分:3)

如果我没记错的话,你必须向上移动一两天 AND 重新启动你的设备。