Skip to content

Instantly share code, notes, and snippets.

@dmennis
Last active October 17, 2018 23:57
Show Gist options
  • Save dmennis/85e6b0c9afb88189cf83e1e745fc211a to your computer and use it in GitHub Desktop.
Save dmennis/85e6b0c9afb88189cf83e1e745fc211a to your computer and use it in GitHub Desktop.
rekognitionObject?.recognizeCelebrities(celebRequest!){
(result, error) in
if error != nil{
print(error!)
return
}
if result != nil{
print(result!)
}
else{
print("No result")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment