我有一个问题,当向上或向下滚动时,会重置原型动态UITableViewCell上的数据值。

我正在检查其他线程建议的单元格是否为零,因为单元格已被重用,但执行从未达到该条件。

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    // Currency formatter
    let formatter = NSNumberFormatter()
    formatter.numberStyle = NSNumberFormatterStyle.CurrencyStyle
    formatter.locale = NSLocale(localeIdentifier: "el-GR")

    // Table view cells are reused and should be dequeued using a cell identifier.
    let cellIdentifier = "MenuItemTableViewCell"

    var cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath: indexPath) as! MenuItemTableViewCell

    if cell.isEqual(nil) {
        cell = UITableViewCell(style: .Default, reuseIdentifier: "MenuItemTableViewCell") as! MenuItemTableViewCell
    }

    // Match category (section) with items from data source
    let itemsPerSection = items.filter({ $0.category == self.categories[indexPath.section] })
    let item = itemsPerSection[indexPath.row]

    // cell data
    cell.cellTitle.text = item.name + "  " + formatter.stringFromNumber(item.price)!
    cell.cellDescription.text = item.description


有什么帮助吗?

问候,
波利斯

最佳答案

每次单元格离开屏幕并再次打开时,都会重新创建该单元格。因此,如果您修改单元格(即,如您对步进器所描述的那样),则必须保存该修改后的值,以便下次在屏幕上使用该修改后的值创建该修改后的值。

关于ios - UITableViewCell-上下滚动时重置内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33769102/

10-08 23:55