在Swift 4中,我们可以通过以下步骤将TableView添加到AlertController:
- 创建一个AlertController对象:let alertController = UIAlertController(title: "标题", message: "消息", preferredStyle: .alert)
- 创建一个TableView对象:let tableView = UITableView(frame: CGRect(x: 0, y: 0, width: 250, height: 200), style: .plain)
- 设置TableView的数据源和代理:tableView.dataSource = self
tableView.delegate = self
- 注册TableViewCell:tableView.register(UITableViewCell.self, forCellReuseIdentifier: "Cell")
- 实现TableView的数据源方法:extension YourViewController: UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return yourDataArray.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
cell.textLabel?.text = yourDataArray[indexPath.row]
return cell
}
}
- 实现TableView的代理方法:extension YourViewController: UITableViewDelegate {
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
// 处理选中某一行的逻辑
}
}
- 将TableView添加到AlertController:alertController.view.addSubview(tableView)
- 添加一个取消按钮:let cancelAction = UIAlertAction(title: "取消", style: .cancel, handler: nil)
alertController.addAction(cancelAction)
- 显示AlertController:present(alertController, animated: true, completion: nil)
这样就可以在Swift 4中将TableView添加到AlertController了。TableView可以用于显示一系列选项供用户选择,适用于需要用户从多个选项中进行选择的场景。
腾讯云相关产品和产品介绍链接地址: