Alert with UITableView
Is it possible to do somet开发者_如何转开发hing like what is shown below using an Alert with a UITableView? If so, how can it be done?
read my this post - http://www.makebetterthings.com/blogs/iphone/add-uitextfield-in-uialertview/
and try to add a table or scroll view instead of uitextfield
No, that's not a UITableView. If you want to show something like that, use UIAlertView:
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"Annuler" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil]; [alert show]; [alert release];
精彩评论