如何在不重新加载数据的情况下更新tableview单元格?

时间:2018-02-21 09:11:19

标签: ios swift uitableview swift4

我有一个tableview单元格。 在这个单元格中有一个播放视频的视图,以及在此下的星级 视频观点。

我希望用户在观看视频的%50部分之前不要评分。 如果用户观看了视频的%50部分,则用户可以对此视频进行评分。

在我的模型类中,我设置了一个计时器。当用户点击视频播放计时器开始播放时,如果计时器==视频持续时间/ 2用户可以评分。否则

用户显示提醒信息..

我做了什么:当计时器==视频时长/ 2时 我重新加载tableview /或只是重新加载行

但视频已停止。

我该怎么做?有任何建议或示例代码吗?

这是我的播放按钮自定义委托功能

if(vlist[index.row].timerIndex >= 10){
                        print("====================!!!!!!!!!!^^^^^^^^^^^^^^======RATABLEEEEEEEEEEE")
                        vlist[index.row].isRatable = true
                        self.rateUserTableView.reloadRows(at: [index], with: .none)
                        MediaManager.sharedInstance.player?.embeddedContentView = cell.videoPlayerView
                        vlist[index.row].timer?.invalidate()
                    }

,这是我的tableview ccellForRowAt

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        guard let vlist = videoList ,!vlist.isEmpty else {let cell = UITableViewCell()
            cell.selectionStyle = .none
            cell.backgroundColor = .clear
            cell.textLabel?.textAlignment = .center
            cell.textLabel?.textColor = UIColor.black
            cell.textLabel?.text = "nodataavaiable".localized()
            return cell
        }
        let cell = tableView.dequeueReusableCell(withIdentifier: "RateUserCell", for: indexPath) as! RateUserCell
        //---
        let playing = vlist[indexPath.row].isPlaying
        cell.delegate = self
        cell.indexPath = indexPath
        cell.playButton.isHidden = playing
        cell.titleView.isHidden = playing
        //---
        if(indexPath.row % 2 == 0) {
            cell.thumbnailImageView.image = UIImage(named:"thumb1")
        }
        else {
            cell.thumbnailImageView.image = UIImage(named:"thumb2")
        }
        cell.titleLabel.text = vlist[indexPath.row].shortDesc
        cell.userName.text = vlist[indexPath.row].person
        cell.userCount.text = String(vlist[indexPath.row].voteCount!)
        cell.voteCount.text = String(vlist[indexPath.row].sumScore!)
        cell.cosmos.rating = Double(vlist[indexPath.row].userVote!)



        if(self.statusId == 3 ){
            if(vlist[indexPath.row].userVote! > 0){
                cell.cosmos.didFinishTouchingCosmos =  { rating in
                    self.setVote(videoId: vlist[indexPath.row].videoId!, vote: Int(rating))
                }
            }
            else {

                if(vlist[indexPath.row].isRatable == true){
                    cell.cosmos.didTouchCosmos = { rating in
                        cell.cosmos.settings.updateOnTouch = true
                        cell.cosmos.rating = rating
                        self.setVote(videoId: vlist[indexPath.row].videoId!, vote: Int(rating))
                    }
                }
                else {
                    cell.cosmos.didTouchCosmos = { rating in
                        cell.cosmos.rating = Double(0.0)
                        self.showAlertMessage(vc: self, titleStr: "error".localized(), messageStr: "rateTimeMsj".localized(), img: "ntf-5", buttonColor: UIColor.red)
                        cell.cosmos.settings.updateOnTouch = false
                    }

                }

            }

        }
        else if(self.statusId == 4){
            cell.cosmos.isHidden = true
        }
        return cell
    }

5 个答案:

答案 0 :(得分:4)

尝试使用tableView.cellForRow来获取单元格并仅使用修改后的数据直接对其进行配置:

// this should give yuo currently visible cell for indexPath
if let ratableCell = tableView.cellForRow(at: indexPath) as? RatableCell {
    // instead of telling tableView to reload this cell, just configure here
    // the changed data, e.g.:
    ratableCell.configureRate(10)
}

答案 1 :(得分:0)

尝试使用此代码重新加载特定索引路径上的单个/多个行。

tableView.reloadRows(at: [indexPath!], with: .top)

答案 2 :(得分:0)

尝试使用其标识符声明您的单元格,并使用对我有用的awakFromnib()

 if let receiverCell = self.tableView.dequeueReusableCell(withIdentifier: "Receiver", for: indexe) as? ReceiverCell {

//    instead of telling tableView to reload this cell, just configure here
receiverCell.awakeFromNib()

 }

答案 3 :(得分:0)

您有两个选择可以执行此操作。 您还可以重新加载特定的单元格,然后重新加载表视图。

使用:-

tableView.reloadRows(at: [indexPath], with: .top)

或您可以获得特殊单元的实例,并且可以根据需要对其进行修改。

使用:-

guard let particularCell = tableView.cellForRows(at: indexPath) as? CellName else {
return 
}

答案 4 :(得分:-1)

reloadData此行无效,但会在没有restaurants = Restaurant.objects.filter(restaurant=<some_pk>) 的情况下刷新数据。