gpt4 book ai didi

ios - 使用 UIAlertController 按钮将自定义单元格添加到 tableView

转载 作者:搜寻专家 更新时间:2023-10-31 22:12:37 28 4
gpt4 key购买 nike

我创建了一个 UITableView 并创建了一些单元格并为它们指定了标识符。我还创建了一个 UIAlertController 来在同一个 View Controller 上按下按钮时显示弹出窗口。我希望能够根据用户在警报弹出窗口中点击的按钮,使用适当的单元格将新行插入到表中。帮助?

最佳答案

你可以这样试试

    let alert = UIAlertController(title:"Test", message: "Message", preferredStyle: UIAlertControllerStyle.alert)
alert.addAction(UIAlertAction(title: "Add Row", style: UIAlertActionStyle.default, handler: { (action) -> Void in
tblView.insertRows(at: [IndexPath], with: UITableViewRowAnimation.left)
And update your data Sourse
}))
alert.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.cancel, handler: nil))
self.presentViewController(alert, animated: true, completion: nil)

希望对你有帮助

关于ios - 使用 UIAlertController 按钮将自定义单元格添加到 tableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40908176/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com