gpt4 book ai didi

ios - Swift:按下按钮后,如何将来自三个独立文本字段的数据发布到自定义单元格中的标签上?

转载 作者:行者123 更新时间:2023-11-28 06:52:18 26 4
gpt4 key购买 nike

我是 swift 的新手,我正在尝试从一个文本字段中获取文本,并从 ViewController 上的其他两个文本字段中获取值(每个文本字段中有一个值),然后当按下一个按钮时,将所有三个部分都放在一起在表格 View 的单元格中水平显示的信息。

这是我正在尝试做的一个例子:

example

一旦按下按钮,我希望文本字段一、二和三中的数据显示在标签一、二和三中。

最佳答案

@IBAction func btn_reload(sender: AnyObject) 
{
/*lbl1.text = txtfield1.text!
lbl2.text = txtfield2.text!
lbl3.text = txtfield3.text!*/

var arrmute: [AnyObject] = [AnyObject]()
var arrmute2: [AnyObject] = [AnyObject]()
var arrmute3: [AnyObject] = [AnyObject]()

arrmute.append(txtfield1.text!)
arrmute2.append(txtfield2.text!)
arrmute3.append(txtfield3.text!)
self.tbl_out.reloadData()

}

首先在 Storyboard中设置 UITabelView 的委托(delegate)和数据源。

按照代码中给出的行的 reuseIdentifier: cell

为您的 UITableView 创建导出。

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int 
{
return arrmute.count
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
var cell: UITableViewCell
if cell == nil
{
cell = UITableViewCell(style: .Default, reuseIdentifier: "cell")
}
cell.lbl1.text = arrmute[indexPath.row]
cell.lbl2.text = arrmute2[indexPath.row]
cell.lbl3.text = arrmute3[indexPath.row]
return cell

}

关于ios - Swift:按下按钮后,如何将来自三个独立文本字段的数据发布到自定义单元格中的标签上?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34563675/

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