gpt4 book ai didi

xamarin.ios - IOS设备的deviceToken

转载 作者:行者123 更新时间:2023-12-04 15:02:35 24 4
gpt4 key购买 nike

我正在使用 Monotouch for mac 并完成了检索配置文件证书的步骤,以便在此过程中启用推送通知。我有一个可用的应用程序,现在正在试验 apns-sharp 和 Moon-apns,但不知道如何使用 检索我的设备 token .我希望有人可以为我提供 详细而直接的步骤为达到这个。

最佳答案

在您的 FinishedLaunching方法,通过UIApplication注册远程通知的应用程序你进入它的对象:

// Pass the UIRemoteNotificationType combinations you want
app.RegisterForRemoteNotificationTypes(UIRemoteNotificationType.Alert |
UIRemoteNotificationType.Sound);

然后,在您的 AppDelegate类,覆盖 RegisteredForRemoteNotifications方法:
public override void RegisteredForRemoteNotifications (UIApplication application, NSData deviceToken)
{
// The device token
byte[] token = deviceToken.ToArray();
}

您还必须覆盖 FailedToRegisterForRemoteNotifications方法,处理错误,如果有的话:
public override void FailedToRegisterForRemoteNotifications (UIApplication application, NSError error)
{
// Do something with the error
}

关于xamarin.ios - IOS设备的deviceToken,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9681035/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com