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

Popular posts from this blog

delphi - How to convert bitmaps to video? -

jasper reports - Fixed header in Excel using JasperReports -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -