gpt4 book ai didi

ios - Swift:TableView 无法选择

转载 作者:搜寻专家 更新时间:2023-11-01 05:58:36 25 4
gpt4 key购买 nike

我在 swift 中有一个当前可选择的 TableView,它允许用户滚动。我想让它让用户无法与之交互,因此它会自动滚动。想想类似于不断运行 500~ 只股票及其价格的股票提要。我如何 swift 做到这一点?

import Foundation
import UIKit

class BucketTableViewController: UITableViewController {

var buckets = [NSDictionary]()

let delegate = UIApplication.sharedApplication().delegate as! AppDelegate

override func viewDidLoad() {
buckets = [...]
}

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return buckets.count
}

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

return cell
}
})
}
}

数据取自大约 500~ 长的 buckets 数组。我该怎么做?

谢谢

最佳答案

您可以通过以下方式禁用用户交互;

tableView.userInteractionEnabled = False

对于滚动,请使用此方法:scrollToRowAtIndexPath:atScrollPosition:animated:

关于ios - Swift:TableView 无法选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31304572/

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