Naresh Venkat
Naresh Venkat

Reputation: 163

How to show the UITableview like as UIAlertview

I am developing an application in which I am using one UIButton.

When I click that button it needs to show the UITableView and other remaining controls are not working. I need to show the UITableView act like a UIAlertView.

Upvotes: 0

Views: 273

Answers (2)

IronManGill
IronManGill

Reputation: 7226

For the First part of your question, Simply add tableview.userInteractionEnabled = NO and so on for disabling the buttons. And if you want to make the UIAlertView act like a UITableView simply add the animation to the UITableView.

Or you could even make a Custom UIAlertView.

Upvotes: 0

Romit M.
Romit M.

Reputation: 898

create UITableViewController. and present modelView as page. it works fine.

Upvotes: 1

Related Questions