我正在尝试使用完全同步的Realm加密我的本地领域文件。从文档和我的理解来看,这根本不是问题,但是当我调用自己的领域时,我总是收到此错误。
无法调用非函数类型“数据”的值吗?
这是我打开和创建钥匙的方式
var key = Data(count: 64)
_ = key.withUnsafeMutableBytes { bytes in
SecRandomCopyBytes(kSecRandomDefault, 64, bytes)
}
//MARK:- This method Syncs Realm
let config = SyncUser.current!.configuration(realmURL: Constants.REALM_URL, fullSynchronization: true, enableSSLValidation: true, urlPrefix: nil).encryptionKey(key)
self.realm = try! Realm(configuration: config)
感谢您的帮助