Thursday, September 2, 2010

Type Cast integer to string in objective c (iphone)

You will have to user string format to convert integer to string in iphone application
int i = 13;
NSString *myString = [NSString stringWithFormat:@"%d",i];



Solution by:Rajesh Rolen

No comments:

Post a Comment