如何解决iCloud 中的键/值对无法按预期工作
我正在尝试将 iCloud 中的键/值对与我的应用一起使用。
我去了我的开发人员门户并检查了 iCloud 键/值对并选择了我的标识符之一。
我已经进入我的应用程序容量并添加了 iCloud 键/值存储,我可以看到它下面的标识,但它们是灰色的并且无法检查(为什么会这样?)。
在我的应用程序 info.plist 我没有做任何事情(我应该做吗?)。
在我的应用授权文件中,我添加了我在开发门户中检查的标识符。
这是我的应用程序中用于编码的内容。
我没有在 viewController.h 文件中添加任何内容
我找不到任何导入
@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 举报,一经查实,本站将立刻删除。