-1

崩溃的图像 当我通过 Alamofire 检索数据时遇到问题。在这里,我定义了一个函数,其中数据通过完成传递给视图控制器。

func getVideoDetail(video_id: String, completionHandler: @escaping (VideoDetail!) -> Void) {
   let PageURL = URL(string: "\(websiteLinks.api)/?type=get_detailss&video_id=\(video_id)")

    Alamofire.request(PageURL!).responseJSON { (response) in
        switch response.result {

        case .success:
            var getDetail: VideoDetail?
            let jsonData = response.data

            do {
                let root = try JSONDecoder().decode(DetailsData.self, from: jsonData!)
                getDetail = root.data
                //THIS IS WHERE YOUR PREVIOUS ERROR OCCURRED
            } catch {
                print("Error: \(error)")
            }
            DispatchQueue.main.async {
               completionHandler(getDetail!)
            }
        case .failure(let error):
            print(error)
        }
    }
}

使用以下代码,我在 ViewController 中获取数据。

videoModel.getVideoDetail(video_id: video_Id) { (Details) in
        self.videoDetails = Details
        self.playVideo()
    }

这是我的 TableView:这个 Cell 是一个 Customcell。我已经在我的 viewDidLoad 上注册了所有 Customcell (UINIBS)

// REGISTER NIBS FOR THE CELLS
tableView.register(UINib(nibName: "DetailsCell", bundle: nil), forCellReuseIdentifier: "DetailsCell")



 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

        switch indexPath.row {
        case 0:
            let cell = tableView.dequeueReusableCell(withIdentifier: "DetailsCell") as! DetailsCell
            cell.likeLabel.text = videoDetails!.category_name!
            cell.dislikeLabel.text = videoDetails!.category_name!
            cell.delegate = self
            return cell
        case 1:
            let cell = tableView.dequeueReusableCell(withIdentifier: "PlayerUserCell") as! PlayerUserCell
            return cell
        default:
            let cell = tableView.dequeueReusableCell(withIdentifier: "newestCell") as! NewestCell
            return cell

        }
    }

但是如果我现在启动应用程序并选择一个单元格,程序就会崩溃。我在这里做错了什么?

这是我的 HomeController 上的 didSelectRow 代码。我在这里传递了 getDetails 函数的 video_id:

    public func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    let storyboard = UIStoryboard(name: "Main", bundle: nil)
    let playerVC = storyboard.instantiateViewController(withIdentifier: "playervc") as! PlayerVC
    playerVC.videoURL = URL(string: featuredVideos[indexPath.row - 2].video_location!)
    playerVC.video_Id = featuredVideos[indexPath.row - 2].video_id
    playerVC.commentVideoId = featuredVideos[indexPath.row - 2].id
    self.present(playerVC, animated: true, completion: nil)
}
4

3 回答 3

0

我已经解决了这个问题。

我将详细信息直接加载到 CustomCell 文件中,然后使用 didSet 加载 UI。代码看起来像这样。

细节单元:

class DetailsCell: UITableViewCell {
// Temp Helper for Like Video
var like = false
var unlike = false
var likeDislike = LikeDislikeHelper()
var videoModel = VideoModel()

var videoDetails: VideoDetail! {
    didSet {
        updateUI()
    }
}

weak var delegate: DetailsCellDelegate?
@IBOutlet weak var likeButton: AnimatableButton!
@IBOutlet weak var dislikeButton: AnimatableButton!
@IBOutlet weak var shareButton: AnimatableButton!
@IBOutlet weak var playlistButton: AnimatableButton!

@IBOutlet weak var likeLabel: UILabel!
@IBOutlet weak var dislikeLabel: UILabel!

override func awakeFromNib() {
    super.awakeFromNib()
    // Initialization code

}

func getDetails(video_id: String) {
    videoModel.getVideoDetail(video_id: video_id) { (Details) in
        self.videoDetails = Details
    }
}

func updateUI() {
    self.likeLabel.text = "\(videoDetails.likes)"
    self.dislikeLabel.text = "\(videoDetails.dislikes)"
}

视图控制器:

 let cell = tableView.dequeueReusableCell(withIdentifier: "DetailsCell") as! DetailsCell
            cell.checkIsLiked(commentVideoId: commentVideoId)
            cell.getDetails(video_id: video_Id)
            cell.delegate = self
            return cell

感谢所有帮助过的人

于 2018-05-08T12:04:32.410 回答
0
      there is nil  `incategory_name` or  `category_name`

像这样使用

 cell.likeLabel.text = videoDetails!.category_name ?? "" 
 cell.dislikeLabel.text = videoDetails!.category_name ?? "" 
于 2018-05-08T10:33:47.427 回答
0

像这样替换;

if let data = jsonData {
    let root = try? JSONDecoder().decode(DetailsData.self, from: data)
    getDetail = root.data
}

如果您的 jsondata 为零,它将使您的应用程序崩溃,不会被捕获。

顺便说一句,你应该停止强制变量。那不安全。使用 if 或 guard let 来防止崩溃。

于 2018-05-08T10:27:06.290 回答