I am trying to use the following alert when I click a row in a table. I do get the alert but the title is half hidden. Can anyone please let me know how to make the entire title visible ?
uiViewForVoteSelection = [[UIAlertView alloc] initWithTitle:[NSString stringWithFormat:@"Please amend member's selection by selecting one of the options"] message:@"" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Yes",@"No" ,@"Abstain",@"Not Selecting",@"Not Present",nil];
[uiViewForVoteSelection show];
The Problem is not the title, even a title like “Please” will be partially hidden. The cause is the number of buttons you added to the alert. If you want to keep the alert you should provide a bigger frame. But I would like to suggest you the use of an actionSheet for this kind of UI.
You can use the following UIAlertViewDelegate method :