gpt4 book ai didi

ios - iOS 上的推送通知

转载 作者:行者123 更新时间:2023-11-28 22:40:00 25 4
gpt4 key购买 nike

我按照本教程在我的 iOS 应用程序中实现了推送,Apple Push Notification Services Tutorial

我按照说明做了所有事情,推送通知效果很好。但是,我没有在设置菜单中看到我的应用程序,因此我可以根据需要禁用推送通知。

我添加到我的代码中的是:

在 delegate.m 文件中:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];

// Let the device know we want to receive push notifications
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:
(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];

return YES;
}

- (void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken
{
NSLog(@"My token is: %@", deviceToken);
}

- (void)application:(UIApplication*)application didFailToRegisterForRemoteNotificationsWithError:(NSError*)error
{
NSLog(@"Failed to get token, error: %@", error);
}

我想要的只是能够禁用推送通知。本教程指出我应该在上面的代码中使用此选项,但我没有看到任何东西。

最佳答案

您检查的地方对吗?正确的位置在设置 -> 通知下。该应用程序不会直接出现在设置列表中,除非您实际配置了设置(即使配置了,通知设置也不会出现在那里)。

关于ios - iOS 上的推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14809593/

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