Skip to content

Instantly share code, notes, and snippets.

@h2rd
Created January 12, 2013 15:08
Show Gist options
  • Select an option

  • Save h2rd/4518432 to your computer and use it in GitHub Desktop.

Select an option

Save h2rd/4518432 to your computer and use it in GitHub Desktop.
NSMutableArray *arr = [[NSMutableArray alloc]init];
for(int i=0;i<=10;i++) {
NSString *nm=[NSString stringWithFormat:@"Raju %d",i];
[arr addObject:nm];
}
NSLog(@"%lu", [arr count]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment