我知道这是非常基本的,但我需要提取我的设备令牌并将其存储在一个字符串中并将其放在(显示)我的 ViewDidLoad 方法的标签上。可能的解决方案是什么?我是 iOS 开发的新手。我应该使用全局变量吗?或任何可能的解决方案?
这是我的代码。
AppDelegate.m
- (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
NSString *str = [NSString stringWithFormat:@"Device Token=%@",deviceToken];
NSLog(@"%@", str);
//get the string and display it on the ViewDidLoad method.
}
请帮我。如何使用全局变量来访问该字符串?
在我的 ViewController.m 类
- (void)viewDidLoad
{
[super viewDidLoad];
NSString *getToken = @"Token from AppDelegate";
}
类似的东西。