更新 奇怪的是,刚刚出现了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")
}
}
我在做什么错?请采取可能的措施。