Hello,

What's the encoding of the source file? I don't see any issues here (at
least in the simulator).

Link to question on StackOverflow:
http://stackoverflow.com/questions/14335855/monotouch-and-uialertview-do-not-show-special-characters-ae-o-a-correct

Mikkel


On Tue, Jan 15, 2013 at 12:12 PM, bjarke <[email protected]> wrote:

> 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
>
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to