如果您知道该行,是否可以导出 indexPath?

Is it possible to derive the indexPath if you know the row?

好的,我将尽可能简单地分解它。我在 ViewController 中有一个 tableView。 table 我有两个原型单元格。我多次重复使用单元格来填充 table。

在其中一个单元格中,我向 label 添加了手势识别器,通过它我使 textField 在标签的位置可见并隐藏 label .现在,当我使用 textField 并按下 return 键时,我希望标签文本更改为我在 textField 中输入的内容。所以我在 viewController 中实现了 UITextFieldDelegate 协议。我还为单元格中的每个文本字段添加了标签,以便我知道 textField 是什么 returning 以及文本字段在哪一行。

基本上,我想知道的是,如果我已经知道 indexPath.row?

,是否有任何方法可以获取 indexPath

对于手势识别器,我能够通过从点击的位置获取 indexPath 来解决这个问题:

func genderTapped(sender: UITapGestureRecognizer) {

        let tapLocation = sender.locationInView(self.profileInfoTable)
        let indexPath = self.profileInfoTable.indexPathForRowAtPoint(tapLocation)

        let cell = self.profileInfoTable.cellForRowAtIndexPath(indexPath!) as! editUserDataCell
        cell.savedUserInput.hidden = true
        cell.userDetailTextfield.becomeFirstResponder()
        cell.userDetailTextfield.hidden = false
        cell.userDetailTextfield.text = cell.savedUserInput.text!            
    }

我需要 indexPath 以便我可以引用单元格中包含的元素。谁能提供任何见解?有人尝试过类似的方法吗?有什么方法可以仅使用行来访问单元格吗?

如果您能够在 GestureMethod 中获取 indexPath,那么您可以创建一个类型为 NSIndexPath 的实例 属性,将其值存储在该 Gesture 的方法中,然后使用 indexPath在 textFieldShouldReturn 委托方法中,类似这样的东西。

var selectedIndexPath: NSIndexPath?

func genderTapped(sender: UITapGestureRecognizer) {

    let tapLocation = sender.locationInView(self.profileInfoTable)
    self.selectedIndexPath = self.profileInfoTable.indexPathForRowAtPoint(tapLocation)

    let cell = self.profileInfoTable.cellForRowAtIndexPath(self.selectedIndexPath!) as! editUserDataCell
    cell.savedUserInput.hidden = true
    cell.userDetailTextfield.becomeFirstResponder()
    cell.userDetailTextfield.hidden = false
    cell.userDetailTextfield.text = cell.savedUserInput.text!
} 

现在在 UITextFieldDelegate 方法中使用这个 self.selectedIndexPath

编辑: 根据你的问题评论,你已经说过你只有一个 Section 所以你也可以从 [=19= 创建 indexPath ]的tag这样。

func textFieldShouldReturn(textField: UITextField) -> Bool {
    let indexPath = NSIndexPath(forRow: textField.tag, inSection: 0)
    //Or You can use self.selectedIndexPath also 
}

如果您知道要访问的行号和该行所在的部分,请使用此代码

let indexPath = NSIndexPath(forRow: row, inSection: section)

要访问与此 indexPath 对应的单元格,请使用

let cell = tableView.cellForRowAtIndexPath(indexPath) as! tableViewCell

如果是单个或多个部分,下面的代码将起作用

在您的 cellForRowAtIndexPath 中,设置标签如下:-

let tag = indexPath.section*100 + indexPath.row

cell.savedUserInput.tag = tag
cell.userDetailTextfield.tag = tag

在您的文本字段委托方法中,获取 indexPath 如下:-

func genderTapped(sender: UITapGestureRecognizer) {
let textfieldObject = sender as! UITextField 
let sectionTag = textfieldObject.tag % 100
let rowTag = textfieldObject.tag / 100

let indexPath = NSIndexPath(forRow: rowTag.tag, inSection: sectionTag)
}

免责声明:这不是对此处提出的字面问题的回答,但它可能为 OP 的目标提供更简单的解决方案。

除非你需要做一些除了你在你的问题中描述的事情之外,在我看来,一个更简单的解决方案是根本不使用标签,而是只使用 UITextField 并设置当您希望它像标签一样工作时,它 enabled 属性 为 false。

如果您需要在模式更改时更改样式,您可以子类化 UITextField