Hey Guys, I have posted this on stackoverflow as well.
If I do this in mono touch:
var alert = new UIAlertView { Message = "Prøv igen" };
alert.AddButton("Nej");
alert.AddButton("Ja");
alert.Clicked += (sender, e) =>
{
if (e.ButtonIndex == 0)
{
//do nothing - go away
}
if (e.ButtonIndex == 1)
{
}
};
alert.Show();
The Uialert do not show "Prøv igen" correct but like this "Pr[]v igen". You
got any ideas to solve this - should I create a string with specific
encoding?
Regards
--
View this message in context:
http://monotouch.2284126.n4.nabble.com/Monotouch-and-uialertview-do-not-show-special-characters-correct-tp4657952.html
Sent from the MonoTouch mailing list archive at Nabble.com.
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch