UIAlertViewにスクローラーを実装して、すべてのボタンを配置できますか?ボタンが多すぎてポップアップに収まりません。より良い解決策?
- (IBAction)SortButton:(id)sender;
{
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@""
message:@""
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Name", @"Country", @"Popularity", @"Fill", @"Freshness", @"Price", @"Alcohol", nil];
[alert show];
[alert release];
}