Converting NSString to unichar in iOS

8.1k Views Asked by At

I have seen questions in stackoverflow that convert unichar to NSString but now I would like to do the reverse.

How do i do it?

Need some guidance.. Thanks

For example, I have an array of strings:[@"o",@"p",@"q"];

These are strings inside. How do i convert it back to unichar?

2

There are 2 best solutions below

0
On BEST ANSWER

The following will work as long as the first character isn't actually two composed characters (in other words as long as the character doesn't have a Unicode value greater than \UFFFF):

unichar ch = [someString characterAtIndex:0];
3
On

You could convert it to a buffer in NSData:

if ([string canBeConvertedToEncoding:NSUnicodeStringEncoding]) {
    NSData * data = [string dataUsingEncoding:NSUnicodeStringEncoding];
    const unichar* const ptr = (const unichar*)data.bytes;
    ...
}