gpt4 book ai didi

swift - 单击 TableView 外部的 UIButton 更改 TableView 单元格文本中的内容

转载 作者:行者123 更新时间:2023-11-30 12:18:34 25 4
gpt4 key购买 nike

我是 IOS 新手,我想在 swift 中的 tableView 外部创建一个 TableView 和一个 UIButton

我想单击 UIButton,然后更改 UITableViewCell 的文本。

最佳答案

我将创建新的UIViewController。在此 View Controller 中创建 UITableView 属性和 UIButton 属性,并在 View Controller 的 init 中创建新的 UITableView 并分配给此属性,对于UIButton

实现tableViewDelegatetableViewDatasource方法。

viewDidLoad()中,您需要进行一些布局。例如,将表格 View 放在上半部分,并在表格 View 下放置按钮。

在按钮操作中,您可以更改呈现 tableView 的 dataModel。 (在方法cellForRowAtIndexPath中)

之后,您需要调用 tableView.reloadData() 并触发方法 cellForRowAtIndexPath 并根据更新的数据模型重新渲染表格。

最小代码示例在此代码示例中,UIButton 不在 tableView 下,而是在 navigationBar 中。此外,整个 Controller 是 UITableViewController 的子类,而不是将 tableView 添加到 UIViewController 中。我只是想让它尽可能简单。

//
// MasterViewController.swift
// stackOverflow
//
// Created by Jakub Prusa on 14.07.17.
// Copyright © 2017 Jakub Prusa. All rights reserved.
//

import UIKit


class MasterViewController: UITableViewController {

var dataModel = ["AAA","BBB","CCC","DDD",]

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.

let addButton = UIBarButtonItem(barButtonSystemItem: .add, target: self, action: #selector(modifyDataModel(_:)))
navigationItem.rightBarButtonItem = addButton

}

// MARK: - Button action
func modifyDataModel(_ sender: Any) {
dataModel[2] = "xx_CCC_xx"
tableView.reloadData()
}

// MARK: - Table View

override func numberOfSections(in tableView: UITableView) -> Int {
return 1
}

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

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)

cell.textLabel!.text = dataModel[indexPath.row]
return cell
}
}

关于swift - 单击 TableView 外部的 UIButton 更改 TableView 单元格文本中的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45099391/

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