我正在尝试在TableView Cell中播放视频。我正在使用此代码但是当我运行时什么都不会出现。
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let myCell:UITableViewCell = tableView.dequeueReusableCell(withIdentifier: "myCell")!
let videoURL = NSURL(string: "http://techslides.com/demos/sample-videos/small.mp4")
let player = AVPlayer(url: videoURL! as URL)
let playerLayer = AVPlayerLayer(player: player)
playerLayer.frame = myCell.bounds
myCell.layer.addSublayer(playerLayer)
player.play()
return myCell
}