0

I want to display amharic alphabets in the detail text on a UITableViewCell but it shows the question marks instead. Can any one help me regarding this issue?

enter image description here

Eric Aya
  • 69,473
  • 35
  • 181
  • 253
  • can you show some code that you attempted – Akshansh Thakur May 29 '16 at 12:38
  • var dictionary = [ "A Fleet Of" : "እናት", "Abbey" : "ያልሆነ", ] if (self.resultSearchController.active) { cell!.textLabel?.text = self.filteredEnglishWords[indexPath.row] // "\u{1203}" cell!.detailTextLabel?.text = self.dictionary[self.englishWords[indexPath.row]] return cell!} –  May 29 '16 at 12:43

1 Answers1

1

The font of label do not support displaying Amharic.

You can download other font like Kefa in here and drag "Kefa-Regular.ttf" into your project.

Follow this link to setup.

Hope it helps :)

Community
  • 1
  • 1
Jintao Ou
  • 146
  • 1
  • 7