我正在尝试构建一个使用推送通知的应用程序。我完成了有关证书、应用程序 ID、配置文件的所有步骤。然后在我的应用程序中,我在 applicationsDidFinishWithLaunchingOptions 中添加了这段代码。
NSLog(@"tille here");
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:
(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];
UIRemoteNotificationType enabledTypes = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];
但我没有得到要求它的弹出窗口。
有人可以帮忙吗?
亲切的问候