gpt4 book ai didi

ios - 文本字段标签和表格 View

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

我在当前正在开发的应用程序上为“编辑配置文件” View Controller 设置了一个自定义表格 View 单元格。自定义单元格有一个标签(用于类别)和一个用于输入的文本字段。例如:“姓名(标签)John Doe(输入)”我使用一个数组作为标签标题,另一个数组作为文本字段中的占位符。我想要做的是访问每个单独的文本字段,以便我可以设置初始文本(用户已存储到服务器的信息)。我怎样才能访问特定的文本字段?我的客人是,我必须将其基于特定的索引路径,但我不太确定。有没有办法以编程方式设置每个文本字段标记,以便我可以轻松访问它们?

最佳答案

你应该尝试这个:

首先为该特定单元格创建一个子类。

放置一个文本字段并添加委托(delegate)

在行数函数中:

 func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

return 4//return whatever you want
}

在 cellForRowAtIndexPath 函数中:

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {


let cell = tableView.dequeueReusableCellWithIdentifier("cell") as! customCell
cell.textfld.tag = indexPath.row//this is the textfield in cell
cell.textfld.delegate = self
cell.selectionStyle = UITableViewCellSelectionStyle.Gray
return cell
}

textFieldDidBeginEditing 函数:

func textFieldDidBeginEditing(textField: UITextField) { 
//delegate method

print(textField.tag)//here you will get particular textfield tag.
}

希望它对你有用......

关于ios - 文本字段标签和表格 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40857074/

26 4 0