我可以在UIAlertView中實現一個滾動條來爲所有按鈕創建位置嗎?我有太多的按鈕來適應彈出。 更好的解決方案?爲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];
}