R – Does UIAlertView really show table view if too many buttons

buttoniphoneuialertviewuitableview

I've seen a number of blogs claim that UIAlertView from firmware 3.0 onwards will show a table view if too many buttons are added to it to fit in the alert box. However, I don't seem to find this the case, either in the simulator or on the device. Before I look at using one of the mechanisms for manually adding a tableview to an alert, I want to make sure I'm not replicating something the OS already does.

Best Answer

No, the thing that shows a table view is UIActionSheet when it has too many items. It's really ugly.

ugly!

Related Topic