Skip to content

Instantly share code, notes, and snippets.

@ThinhPhan
Created May 8, 2015 15:31
Show Gist options
  • Save ThinhPhan/1c2249fa1e7710a07aab to your computer and use it in GitHub Desktop.
Save ThinhPhan/1c2249fa1e7710a07aab to your computer and use it in GitHub Desktop.
Check a string is a number or not
- (BOOL)isNumeric:(NSString *)string
{
NSScanner *scanner = [NSScanner scannerWithString:string];
return [scanner scanInteger:NULL] && [scanner isAtEnd];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment