i am using UIalertView,
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:appname
message:@"some blah blah!"
delegate:nil
cancelButtonTitle:@"Ok"
otherButtonTitles:@"Free content", nil];
[alert show];
here i want to reduce the font size of "Free content" when alert view pops up(something like arial-9)font,is there any way to reduce the font or design it in a custom way?
thanks,