Skip to content

Instantly share code, notes, and snippets.

@PedroFarina
Last active March 31, 2020 21:07
Show Gist options
  • Save PedroFarina/ca8a6192a6eb31f47f520b3c92fb8951 to your computer and use it in GitHub Desktop.
Save PedroFarina/ca8a6192a6eb31f47f520b3c92fb8951 to your computer and use it in GitHub Desktop.
Procurando um aluno na database
let predicado = NSPredicate(format: "Nome == Pedro")
let busca = CKQuery(recordType: "Aluno", predicate: predicado)
dbPublica.perform(busca, inZoneWith: nil) { (records, erro) in
//Este trecho do código rodará assincronamente após receber a resposta do servidor
if let erro = erro {
print("Não foi possível executar essa busca"
}
else {
print("A busca foi executada com sucesso"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment