Has anyone been successful in adding the registered sign symbol to their text using NSString in objective C? I tried using the unicode equivalent: \u00AE however this does not give me the registered sign symbol as should be! Can anyone offer any insight?
Has anyone been successful in adding the registered sign symbol to their text using
Share
NSLog(@"Hello\u00AE");outputs the expected string with the registered character on my console. May be it’s really the font you are trying to use when displaying your string.