ios - 无法在 ios 8 中获取设备 token
<p><p>我没有进入方法</p>
<blockquote>
<p>didRegisterForRemoteNotificationsWithDeviceToken</p>
</blockquote>
<p>实际上我想获得设备 token ,我试图关注这个问题 <a href="https://stackoverflow.com/questions/24426090/get-device-token-in-ios-8" rel="noreferrer noopener nofollow">Get Device Token in iOS 8</a>但仍然面临同样的问题
.帮我解决这个问题</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>试试这个。</p>
<p>在你的方法中。</p>
<blockquote>
<ul>
<li>(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {</li>
</ul>
</blockquote>
<p>使用此代码</p>
<pre><code>if ([[ systemVersion] floatValue] >= 8.0)
{
[ registerUserNotificationSettings:];
[ registerForRemoteNotifications];
}
else
{
[ registerForRemoteNotificationTypes: (UIRemoteNotificationTypeNewsstandContentAvailability| UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];
}
</code></pre>
<p>然后把你的日志或断点放在</p>
<blockquote>
<p>didRegisterForRemoteNotificationsWithDeviceToken</p>
</blockquote>
<p>是否被调用。</p>
<p>如果您的应用已正确注册远程通知设置,但您没有获得设备 token ,那么</p>
<p>检查</p>
<blockquote>
<p>didFailToRegisterForRemoteNotificationsWithError</p>
</blockquote>
<p>告诉你遇到了哪个错误的方法。</p>
<p><strong>注意:设备 token 仅在您在设备上运行时才会返回。操作系统模拟器不支持推送通知</strong></p>
<p>如果您无法调用此方法,请查看本教程</p>
<p> <a href="http://www.raywenderlich.com/32960/apple-push-notification-services-in-ios-6-tutorial-part-1" rel="noreferrer noopener nofollow">http://www.raywenderlich.com/32960/apple-push-notification-services-in-ios-6-tutorial-part-1</a> </p>
<p>并按照创建配置文件和证书的步骤进行操作。我尝试使用我现有的证书。按照本教程系列中的说明使用有效配置文件运行应用程序后,您将能够调用该方法。</p></p>
<p style="font-size: 20px;">关于ios - 无法在 ios 8 中获取设备 token ,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/32307098/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/32307098/
</a>
</p>
页:
[1]