开发者

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?

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜