There's a view in my iOS app which basically shows a list of Wikipedias sorted by the language that Wikipedia serves. I'm adding a feature where, when a language is tapped, an action sheet will pop up and offer some options. The title of the sheet should show the native language name of the language, the English name of the language, and Wikipedia's language code. The code to format that basically looks like:
NSString *title = [NSString stringWithFormat:@"%@ (%@, %@)", [lang language], [lang englishName], [lang langcode]];
This works just fine if I NSLog the string:
2013-01-23 10:24:38.776 WPTrans[18245:c07] Asturianu (Asturian, ast)
2013-01-23 10:51:37.295 WPTrans[18245:c07] עברית (Hebrew, he)
2013-01-23 10:25:43.196 WPTrans[18245:c07] تركمن / Туркмен (Turkmen, tk)
But the string formatting gets a little wrong when the string is shown in the action sheet when the native language name contains RTL script.

As you can see, with Hebrew, where the native language name contains only RTL characters, the language name is appearing to the right of the parenthesized values, which is inconsistent but not terrible. With Turkmen, however, where the language name contains both RTL Arabic and LTR Cyrillic script, things are just all over the place.
What's going wrong? And is it possible for me to fix it? I found this question, but I'm not sure if it's relevant - if things display correctly when I NSLog (and also when the language name displays in the table), then the RTL markers and such are already in the string, yes?