gpt4 book ai didi

ios - 在 TableView 选项中获取行 ID

转载 作者:行者123 更新时间:2023-11-28 13:13:54 25 4
gpt4 key购买 nike

我正在为表格 View 单元格选项使用滑动手势。

这是我的代码:

func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [AnyObject]? {

var shareAction = UITableViewRowAction(style: UITableViewRowActionStyle.Default, title: "Sil" , handler: { (action:UITableViewRowAction!, indexPath:NSIndexPath!) -> Void in


let shareMenu = UIAlertController(title: nil, message: "Emin misiniz ?", preferredStyle: .ActionSheet)

let twitterAction = UIAlertAction(title: "Sil", style: UIAlertActionStyle.Default, handler: self.deleteConversation)
let cancelAction = UIAlertAction(title: "İptal", style: UIAlertActionStyle.Cancel, handler: nil)

shareMenu.addAction(twitterAction)
shareMenu.addAction(cancelAction)


self.presentViewController(shareMenu, animated: true, completion: nil)
})
return [shareAction]

}

你可以在代码中看到,我正在使用 deleteConversation 处理程序的方法。但我不知道如何在 deleteConversation 方法中获取行 ID。

这是我的deleteConversation 方法:

func deleteConversation(alert: UIAlertAction!) {
//I need the row id here
println("sill")
}

如何在处理程序方法中获取行 ID?

最佳答案

您有几个选择。您可以将编辑操作的行/索引路径保存到 editActionsForRowAtIndexPath 开头的新实例变量,然后在 deleteConversation 函数中查看该实例变量。 (您需要在 View Controller 中创建一个新的类范围实例变量才能使此选项生效。)

第二个选项:您可以在调用中传入一个内联 block 以创建 Twitter 操作:

func tableView(tableView: UITableView, 
editActionsForRowAtIndexPath
indexPath: NSIndexPath) -> [AnyObject]?
{
//skipped code here...
let twitterAction = UIAlertAction(
title: "Sil",
style: UIAlertActionStyle.Default,
handler:
{
(alert: UIAlertAction!) in
println("User asked to delete twitter feed at index \(indexPath.row)")
})
//skipped more code here...
}

使用该语法,您将作为 twitter 操作处理程序传入闭包,并在线定义闭包。当您这样做时,闭包可以访问其封闭范围内的变量。在这种情况下,它使我们能够访问传入的 indexPath。

关于ios - 在 TableView 选项中获取行 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30074410/

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