的步骤如下:
下面是一个示例代码:
// Person.swift
class Person {
var name: String
var age: Int
init(name: String, age: Int) {
self.name = name
self.age = age
}
}
// ViewController.swift
import UIKit
class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
@IBOutlet weak var tableView: UITableView!
var people: [Person] = []
override func viewDidLoad() {
super.viewDidLoad()
tableView.dataSource = self
tableView.delegate = self
}
// UITableViewDataSource methods
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 10 // 假设tableview有10行
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CustomTableViewCell
// 设置cell的文本字段
return cell
}
// UITableViewDelegate methods
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let cell = tableView.cellForRow(at: indexPath) as! CustomTableViewCell
let name = cell.nameTextField.text ?? ""
let age = Int(cell.ageTextField.text ?? "") ?? 0
let person = Person(name: name, age: age)
people.append(person)
}
// 保存数据
func saveData() {
// 将people数组进行持久化操作,例如保存到本地数据库或者文件中
}
}
在上述示例代码中,我们创建了一个Person类来表示每一行的文本字段数据。在tableview的代理方法中,我们获取每一行的文本字段值,并创建一个Person对象,将其添加到people数组中。最后,我们可以在需要保存数据的时候调用saveData方法来将people数组进行持久化操作。
请注意,上述示例代码是使用Swift语言编写的,如果使用其他编程语言,可以根据语言特性进行相应的修改。此外,具体的持久化操作和腾讯云相关产品与链接地址与问题无关,因此不在此提供。
领取专属 10元无门槛券
手把手带您无忧上云