私はカスタムを使用cell
セル内でビデオを再生する。しかし、それは私に空を示すことですtableView
cell
、誰かが私を助けることができますか?テーブルセルでビデオを再生
override func viewDidLoad() {
super.viewDidLoad()
let Custome = CustomeNavigation(nibName: "CustomeNavigation", bundle: nil)
self.view.addSubview(Custome.view)
Custome.lbl_customeTitle.text = "FEED"
tableView.frame = CGRect(x:0, y:0, width:view.bounds.width, height:view.bounds.height);
tableView.delegate = self
tableView.dataSource = self
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell")
self.view.addSubview(tableView)
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 2
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
let cell = tableView.dequeueReusableCell(withIdentifier: "VedioCell", for: indexPath) as! FeedCell
let videoURL = NSURL(string: "http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4")
let player = AVPlayer(url: videoURL! as URL)
let playerLayer = AVPlayerLayer(player: player)
playerLayer.frame = cell.bounds
cell.layer.addSublayer(playerLayer)
player.play()
return cell
}
FeedCellクラスを表示できますか? –