gpt4 book ai didi

arrays - 访问该数组的正确语法

转载 作者:行者123 更新时间:2023-11-30 10:13:23 27 4
gpt4 key购买 nike

enter image description here我有一个 View Controller ,里面有一个 TableView 。我有一个名为“创建”的导航按钮。用户填写了几个文本字段并从 UITableview 中选择了一个单元格后,我希望创建按钮使用所选和输入的信息创建一个解析对象。

我有这些数组..

 var name = [String]()
var address = [String]()

var theseItems:[String] = [] //globalArray

我将选定的单元格附加到“这些项目”数组。

 //i have already queried and added what i wanted, to the name and address array..so they are filled with information.


didSelectRowAtIndexPath {
self.theseItems.append(name[indexPath.row] as String)
self.theseItems.append(address[indexPath.row] as String)

现在使用创建按钮,我想根据此信息创建一个对象,但很难访问按钮中选定的单元格索引路径...

    @IBAction func createButton(sender: AnyObject) {

let thisObject = PFObject(className:"thisObject")
thisObject["name"] = name.text
thisObject["address"] = address.text
thisObject["selectedCell"] = theseItems(name[indexPath.row])
thisObject["selectedCell2"] = theseItems(address[indexPath.row])
//error** unresolved identifier "indexPath"

我不确定使用单元格信息访问数组的正确方法..将其保存以进行解析。提前致谢!

thisObject.saveEventually()

最佳答案

您可以通过调用表格 View 上的 indexPathsForSelectedRows() 方法来获取当前选定单元格的索引路径(如果仅限于单个选择,则调用 indexPathForSelectedRow() 方法)一次)。

关于arrays - 访问该数组的正确语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31661234/

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