Simply I have a button that popUp a UIAlertView view
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"u clicked me !!" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
[alert release];
I want to change the font and the size of the message also the color of the UIAlertView?
is there a simple way to do that?
Don’t think there’s easy way to change the background colour. If you only want to change the font size, please have a look at this post by Himanshu Sharma.
I have issue with Appirater for iPhone in Landscape mode and used the code to adjust the font size and it works for me. Hope this helps. Cheers