gpt4 book ai didi

ios - 在 UITableViewController 中设置默认选中的单元格

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

我正在尝试设置默认的 selectedCell,默认情况下我的意思是该单元格具有特定的 selectedCellBackgroundView。但是,即使我已经为它创建了一个方法,它似乎也不起作用。它没有在第一个单元格上显示任何 selectedBackgroundView 吗?当我手动选择一个单元格时它工作正常。我做错了什么?

viewDidLoad 和 viewWillAppear 都试过了

let indexPath = NSIndexPath(forRow: 0, inSection: 0)
let cell = tableView!.cellForRowAtIndexPath(indexPath)! as UITableViewCell

applySelectionChangesToCell(cell)

didSelectRowAtIndexPath

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

let cell = tableView.cellForRowAtIndexPath(indexPath)! as UITableViewCell
applySelectionChangesToCell(cell)

NSUserDefaults.standardUserDefaults().setInteger(menuArray[indexPath.row].id!, forKey: "leagueId")

self.sideMenuViewController.hideMenuViewController()

}

applySelectionChangesToCell

func applySelectionChangesToCell(cell:UITableViewCell) {

let backgroundSelectionView = UIView(frame: cell.bounds)
backgroundSelectionView.backgroundColor = UIColor.whiteColor().colorWithAlphaComponent(0.1)
cell.selectedBackgroundView = backgroundSelectionView
}

最佳答案

试试这个:

class TableViewController: UITableViewController {
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 5
}

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("CustomCell", forIndexPath: indexPath)

// setup selectedBackgroundView
let backgroundSelectionView = UIView()
backgroundSelectionView.backgroundColor = UIColor.whiteColor().colorWithAlphaComponent(0.1)
cell.selectedBackgroundView = backgroundSelectionView

return cell
}

override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated)

let indexPath = NSIndexPath(forRow: 0, inSection: 0)
tableView.selectRowAtIndexPath(indexPath, animated: false, scrollPosition: .None)
}
}

关于ios - 在 UITableViewController 中设置默认选中的单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33658407/

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