Skip to content

Instantly share code, notes, and snippets.

@johndpope
Created August 4, 2015 05:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johndpope/129c8189643f60f96758 to your computer and use it in GitHub Desktop.
Save johndpope/129c8189643f60f96758 to your computer and use it in GitHub Desktop.
extension NSArray {
func bCount() -> Bool {
if(self.count > 0){
return true
}
return false
}
}
// if(!dataArray.bCount()){
// }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment