Is there a way to check strings for nil and \"\" in Swift? In Rails, I can use blank() to check.
nil
\"\"
blank()
I currently have this, but i
Swift 3 For check Empty String best way
if !string.isEmpty{ // do stuff }