I'd like to do something like this:
const UniChar KA = 'か';
But XCode spits back "Multi-character constant".
I try to avoid using +characterAtIndex of NSString... I need this to iterate over the kana, like you can iterate over the alphabet (char myCharacter = 'A';
)
I was looking at Objective c doesn't like my unichars? but it doesn't really solve it in a nice way for me.
Anyway, I'm trying to put the "tenten" and/or "maru" on top of か, た, etc like か→が, た→だ. Might be a ready made solution for that, in case anyone knows, that'll solve my problem as well.