Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个使用一个 UIButton 的应用程序。
当我单击该按钮时,它需要显示 UITableView 和其他剩余控件不起作用。我需要显示 UITableView 的行为就像 UIAlertView。
创建UITableViewController. 并将模型视图呈现为页面。它工作正常。
UITableViewController
对于您问题的第一部分,只需添加tableview.userInteractionEnabled = NO等等即可禁用按钮。如果你想让UIAlertView动作像一个UITableView简单的添加动画到UITableView.
tableview.userInteractionEnabled = NO
UIAlertView
UITableView
或者你甚至可以制作一个 Custom UIAlertView。