gpt4 book ai didi

Swift UITableViewRowAction 不同行上不同数量的按钮

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

使用 UITableViewRowAction 可以在每一行上设置不同数量的按钮吗?例如,我希望一行包含 3 个操作,其余行包含 2 个操作。这可能吗?

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

if indexPath.row == 0 {
let note = UITableViewRowAction(style: .Default, title: " Note ") { action, index in

self.notePopUpCalled()
}
note.backgroundColor = GlobalColourConstants.informationColour

let infomation = UITableViewRowAction(style: .Default, title: " Info ") { action, index in

self.informationPopUpCalled()
}
infomation.backgroundColor = GlobalColourConstants.appColour

let Diagram = UITableViewRowAction(style: .Default, title: " Diagram ") { action, index in

self.diagramPopUpCalled()
}
note.backgroundColor = GlobalColourConstants.informationColour
return [note, information, diagram]


} else {
let note = UITableViewRowAction(style: .Default, title: " Note ") { action, index in

}
note.backgroundColor = GlobalColourConstants.informationColour

let infomation = UITableViewRowAction(style: .Default, title: " Info ") { action, index in

}
infomation.backgroundColor = GlobalColourConstants.appColour
return [note, information, nil]
}
}

最佳答案

是的,这是可能的。方法:

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

返回每个索引路径的操作数组。因此,您可以为每一行返回不同的操作集。

关于Swift UITableViewRowAction 不同行上不同数量的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35676347/

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