开发者

Alert with UITableView

开发者 https://www.devze.com 2023-02-26 04:30 出处:网络
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?

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?

Alert with UITableView


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]; 
0

精彩评论

暂无评论...
验证码 换一张
取 消