int to NSString


/ Published in: Objective C
Save to your folder(s)

convert int to NSString


Copy this code and paste it in your HTML
  1. int = 100;
  2. NSString *intString = [NSString stringWithFormat:@"%i", int];

Report this snippet


Comments


You need to login to view comments.