CloudKit仪表板说我没有iCloud容器

时间:2018-11-11 13:36:06

标签: ios swift icloud cloudkit

更新 奇怪的是,刚刚出现了CloudKit容器。我不知道为什么。

原始帖子

在我的项目中,我设置了CloudKit支持,但不起作用,该容器的捆绑包ID已经创建,我使用默认容器在项目中选择了iCloud和CloudKit,但仪表板找不到它。在项目中,我使用:

self.saveToCloud(note: quoteLabel.text!)

在执行动作时保存句子,而函数本身:

func saveToCloud(notes: String) {
let newQuote = CKRecord(recordType: "Notes")
newQuote.setValue(notes, forKey: "content")
database.save(newQuote) { (record, error) in
Look at the record!
print("saved record")
        }
}

我在做什么错?请采取可能的措施。

enter image description here

enter image description here

Here's what I see in the Dashboard

0 个答案:

没有答案