How could I display Hiragana Japanese character in an iPhone app

205 Views Asked by At

I am working on a Japanese iPhone app, I need to display in Japanese Hiragana in specific screen location, I tried to use NSSTING directly it doesn't work. Please what is the right way to do it. Thanks in advance.

enter image description here

1

There are 1 best solutions below

1
On

Use these methods, which defined in UITableVIewDataSouce protocl, to set custom NSString of the section header and index view:

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section;
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView