I have an alertview where I have the Yes and No options. He looks lower.

Code used
UIAlertView *confAl = [[UIAlertView alloc] initWithTitle:@"" message:@"Are you sure?" delegate:self cancelButtonTitle:@"Yes" otherButtonTitles:@"No", nil]; confAl.tag = 888; [confAl show];
This is perfect, but I want Yes to be a bold font, not like a regular font.
So, I turned on the Yes and No buttons, as shown below.

Code used
UIAlertView *confAl = [[UIAlertView alloc] initWithTitle:@"" message:@"Are you sure?" delegate:self cancelButtonTitle:@"No" otherButtonTitles:@"Yes", nil]; confAl.tag = 888; [confAl show];
Is there a way that we can have Yes as the first button, and No as the second button with Yes as a bold effect?
Note: I want to use the same effects in iOS 6 (the same old style) and iOS 7 (new style, as indicated above in the image).
ios objective-c button uialertview
Fahim parkar
source share