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?
Asked
Active
Viewed 54 times
0
-
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