Objective-C ASCII decimal integer to NSString conversion -
how can convert , ascii decimal integer nsstring in objective-c? (example: 36 "$")
thanks
you can use following:
nsstring *s = [nsstring stringwithformat:@"%c", 36]; nslog(@"%@", s); // $
Comments
Post a Comment