Reputation: 163
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
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
Reputation: 898
create UITableViewController
. and present modelView as page. it works fine.
Upvotes: 1