Post

Replies

Boosts

Views

Activity

Reply to CloudKit Web Services access to encrypted values
Once the document has been downloaded, the url contains a special character "$ {f}" which must be replaced by any other value you want. In this case I use the recordName to replace this special character. let downloadURL = ... let fileName = recordName + ".jpg" let urlString = downloadURL.replacingOccurrences(of: "${f}", with: fileName) guard let url = URL(string: urlString) else { return nil } // Do what you want with url
Oct ’21