Skip to content

Instantly share code, notes, and snippets.

@odrobnik
Created September 4, 2015 14:45
Show Gist options
  • Save odrobnik/f221d2a75fb23cf137fe to your computer and use it in GitHub Desktop.
Save odrobnik/f221d2a75fb23cf137fe to your computer and use it in GitHub Desktop.
extension String
{
func isSomeText() -> Bool
{
if count(self)>0
{
return true
}
return false
}
}
var text: String? = "Bla"
if text?.isSomeText() == true
{
NSLog("YES")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment