gpt4 book ai didi

ios - 为在 UITableView 中单击的静态单元格创建操作

转载 作者:搜寻专家 更新时间:2023-10-30 22:01:44 26 4
gpt4 key购买 nike

当在 Swift 中单击其中一个单元格时,如何创建一个静态 TableView 来创建一个 Action ?

我已经创建了一个静态表格,就像应用程序的常规菜单一样,我可以在单击其中一个单元格时直接创建推送转场。但与此同时,当我点击其中一个序列时,我希望运行以下功能。通过将单元格拖到 Storyboard 中的 UITableView,不会出现创建操作选项。

    var goToProfiles = PFObject(className: "goToProfile")    
goToProfiles["user"] = PFUser.currentUser()!.username
goToProfiles["goToUser"] = usernameLbl.text
goToProfiles.save()

最佳答案

如果您使用部分,您还需要查询它们。

override func tableView(tableView: UITableView, 
didSelectRowAtIndexPath indexPath: NSIndexPath) {

print(indexPath.section)
print(indexPath.row)

if indexPath.section == 1 && indexPath.row == 1 {
// do something
}

}

关于ios - 为在 UITableView 中单击的静态单元格创建操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30684508/

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