iCloud 中的键/值对无法按预期工作

问题描述

我正在尝试将 iCloud 中的键/值对与我的应用一起使用。
我去了我的开发人员门户并检查了 iCloud 键/值对并选择了我的标识符之一。 我已经进入我的应用程序容量并添加了 iCloud 键/值存储,我可以看到它下面的标识,但它们是灰色的并且无法检查(为什么会这样?)。 在我的应用程序 info.plist 我没有做任何事情(我应该做吗?)。 在我的应用授权文件中,我添加了我在开发门户中检查的标识符。

这是我的应用程序中用于编码的内容

我没有在 viewController.h 文件添加任何内容

在我的 viewController.m 文件添加

我找不到任何导入

@property (strong,nonatomic) IBOutlet UITextField *textField;
- (IBAction)saveKey:(id)sender;

我在我的故事板中创建了这些并将它们连接起来。

在 ViewDidLoad 中

 _keyStore = [[NSUbiquitouskeyvalueStore alloc] init];

       Nsstring *storedString = [_keyStore stringForKey:@"MyString"];

       if (storedString != nil){
           _textField.text = storedString;
       }

       [[NSNotificationCenter defaultCenter] addobserver:self
             selector: @selector(ubiquitouskeyvalueStoreDidChange:)
             name: NSUbiquitouskeyvalueStoreDidChangeExternallyNotification
             object:_keyStore];

然后分开

-(void) ubiquitouskeyvalueStoreDidChange: (NSNotification *)notification
{
    UIAlertController *AlertView = [UIAlertController
                    alertControllerWithTitle:(@"Change detected")
                                     message:@"iCloud key-value store change detected"
                              preferredStyle:UIAlertControllerStyleAlert];

    UIAlertAction* okButton = [UIAlertAction
                        actionWithTitle:NSLocalizedString (@"OK",nil)
                                  style:UIAlertActionStyleDefault
                                handler:^(UIAlertAction * action) {
        [self dismissViewControllerAnimated:YES completion:NULL];
    }];
    [AlertView addAction:okButton];
[self presentViewController:AlertView animated:YES completion:nil];
    _textField.text = [_keyStore stringForKey:@"MyString"];
    dispatch_after(dispatch_time(disPATCH_TIME_Now,(int64_t)(3 * NSEC_PER_SEC)),dispatch_get_main_queue(),^{
        [self dismissViewControllerAnimated:YES completion:NULL];
    });
 
}

最后是我的按钮操作

- (IBAction)saveKey:(id)sender {
    [_keyStore setString:_textField.text forKey:@"MyString"];
    [_keyStore synchronize];
    NSLog(@"YEP!!!");
}

我在 textField 中输入了一些内容并点击了 say 按钮,但没有任何反应。我关闭了应用程序,当我打开它时,textField 中没有任何内容

然后我唯一能想到的是标识符是错误的,但如果我不能使用它,为什么我允许我在我的门户中选择它,但为什么它在我的应用程序中显示为灰色?

我非常感谢您的帮助。

谢谢

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)