设备令牌没有方法?
我们可以在不调用ipad中的方法的情况下获取设备令牌吗?
如果是的话怎么办?
谢谢, 夏姆帕拉马尔
Can we get device token without calling method in ipad?
if yes how?
Thanks,
shyam paramar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须调用
[[UIApplicationsharedApplication]registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge)];
方法来触发您的应用程序和特定设备向Apple推送通知服务的注册。
它在“本地和本地”中进行了描述。推送通知编程指南'下的计划、注册和处理通知。
You have to call the
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge)];
method to trigger the registration of your app and the specific device with the Apple Push Notification Service.
It's described in the 'Local & Push Notifications Programming Guide' under Scheduling, Registering and Handling Notifications.