简体   繁体   English

iOS应用无法接收报亭通知

[英]iOS app cannot receive newsstand notification

I am new to iOS programming, and I face a real problem while developing a Newsstand App. 我是iOS编程的新手,在开发报亭应用程序时遇到了一个真正的问题。 Simply, the app seem not to receive Newsstand notifications (I have NSLog in didReceiveRemoteNotification and in didFinishLaunchingWithOptions and no log is presented during application running in XCode). 简而言之,该应用程序似乎没有收到报亭通知(我在didReceiveRemoteNotification和didFinishLaunchingWithOptions中具有NSLog,并且在XCode中运行应用程序期间未显示任何日志)。 I set all the needed settings in info.plist, I also included this in my app: 我在info.plist中设置了所有需要的设置,我也将其包含在我的应用程序中:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// register for Push notification and don't use throttling for development
//[[UIApplication sharedApplication] unregisterForRemoteNotifications];
[[NSUserDefaults standardUserDefaults] setBool:YES  forKey:@"NKDontThrottleNewsstandContentNotifications"];
[[NSUserDefaults standardUserDefaults] synchronize];
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:UIRemoteNotificationTypeNewsstandContentAvailability];

As the app is able to process normal Push Notifcations (alert, sound etc.) I assumed it is all about throttling, but, as I mentioned above, I set the defaults not to use throttling. 由于该应用程序能够处理常规的推送通知(警报,声音等),因此我认为这全都与节流有关,但是,如上所述,我将默认值设置为不使用节流。 I have read some Apple's guidlines and have searched through many forums and found out that I need to set the device I'm working with to "enabled for development" in XCode organizet. 我已经阅读了一些Apple的指南,并在许多论坛上进行了搜索,发现我需要在XCode Organized中将要使用的设备设置为“启用开发”。 However I cannot find any checkbox or button to set it. 但是我找不到任何复选框或按钮来进行设置。 I use XCode 4.5. 我使用XCode 4.5。

Can anyone help me on the issue? 有人可以帮我解决这个问题吗? Do you have any idea how to debug notifications and check where they dissapear? 您是否知道如何调试通知并检查通知消失的地方?

您必须发送内容可用的推送通知:1,然后在设备中应用的报亭中将“自动下载”设置为“开”。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM