I am developing an Desktop application where I want to show a message in alert panel using NSRunAlertPanel. I am doing the following things:
NSString *title = @"% Test";
NSString *message = @"% Test Message";
NSRunAlertPanel(title, message, @"Ok" ,@"Cancel" ,nil);
The alert panel show the title properly. i.e % Test But, the message is est Message; I want to display % Test Message.
How do I solve this problem?
Thanks in advance.