gpt4 book ai didi

ios - 通过按按钮插入 TableView 行

转载 作者:行者123 更新时间:2023-11-30 11:11:33 26 4
gpt4 key购买 nike

我创建了一个带有两个 Controller 的 UITabBarController ,因为首先我有一个ViewController 上有 UIButton,第二个是 UITableViewController,我如何通过按 ViewController 中的 btn 在 tableView 中插入新行?应该通过自定义委托(delegate)来完成吗?有人可以展示一下简单的例子吗

这是我的代码

import UIKit

class Home: UIViewController {

var delegate: TableViewDelegate?

lazy var addButton : UIButton = {
let button = UIButton(type: .system)
button.setImage(#imageLiteral(resourceName: "plus_photo"), for: .normal)
button.translatesAutoresizingMaskIntoConstraints = false
button.addTarget(self, action: #selector(setupRows), for: .touchUpInside)
return button

}()

@objc func setupRows() {
delegate?.insertingRows()
}

override func viewDidLoad() {
super.viewDidLoad()

delegate = self as? TableViewDelegate

setupRows()

navigationItem.title = "Test"

view.backgroundColor = .white
view.addSubview(addButton)

addButton.centerXAnchor.constraint(equalTo: view.centerXAnchor).isActive = true
addButton.centerYAnchor.constraint(equalTo: view.centerYAnchor).isActive = true
addButton.heightAnchor.constraint(equalToConstant: 150).isActive = true
addButton.widthAnchor.constraint(equalToConstant: 150).isActive = true
}
}

import UIKit

protocol TableViewDelegate {

func insertingRows()
}

class TableViewTest: UITableViewController , TableViewDelegate {

var items = ["abc", "abcd", "abcde"]
let cellid = "cellid"

override func viewDidLoad() {
super.viewDidLoad()

tableView.register(CustomCell.self, forCellReuseIdentifier: cellid)
insertingRows()
}

func insertingRows() {

let indexPath = IndexPath(row: items.count + 1, section: 0)

tableView.insertRows(at: [indexPath], with: .left)
self.tableView.reloadData()
}

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

let cell = tableView.dequeueReusableCell(withIdentifier: cellid, for: indexPath) as! CustomCell
cell.textLabel?.text = items[indexPath.row]

return cell
}

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return items.count
}

override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 100
}
}

class CustomCell: UITableViewCell {

override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)

setupViews()
}

required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}

func setupViews() {
}
}

最佳答案

您可以在 Home viewController 中使用 tabBar(_:didSelect:) 委托(delegate)方法。

您的家庭风险投资:

class Home: UIViewController, UITabBarControllerDelegate {

private var selectedIndex: Int?

override func viewDidLoad() {

super.viewDidLoad()
self.tabBarController?.delegate = self
}

func tabBarController(_ tabBarController: UITabBarController, didSelect viewController: UIViewController) {

if tabBarController.selectedIndex == 1 {

if let secondViewController = viewController as? TableViewTest, let index = selectedIndex {
secondViewController.insertingRows(index: index)
}
}
}

@objc func setupRows() {
selectedIndex = 3
}
}

您的 TableViewTest TableViewController :

class TableViewTest: UITableViewController {

func insertingRows(index: Int) {

let indexPath = IndexPath(row: index, section: 0)

tableView.beginUpdates()
tableView.insertRows(at: [indexPath], with: .none)
tableView.endUpdates()
}
}

关于ios - 通过按按钮插入 TableView 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52138944/

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