1
如何將本地視頻嵌入到UIView中?將本地視頻嵌入到UIView中
這裏有一個類似的問題:Embeding youtube video into a UIView/UIWebView 但是,它在obj-c中並使用了youtube。
如何將本地視頻嵌入到UIView中?將本地視頻嵌入到UIView中
這裏有一個類似的問題:Embeding youtube video into a UIView/UIWebView 但是,它在obj-c中並使用了youtube。
您可以使用AVPlayer
import UIKit
import AVFoundation
import AVKit
class ViewController: UIViewController {
var avPlayer: AVPlayer!
override func viewDidLoad() {
super.viewDidLoad()
let filepath: String? = Bundle.main.path(forResource: "qidong", ofType: "mp4")
let fileURL = URL.init(fileURLWithPath: filepath!)
avPlayer = AVPlayer(url: fileURL)
let avPlayerController = AVPlayerViewController()
avPlayerController.player = avPlayer
avPlayerController.view.frame = CGRect(x: 0, y: 0, width: UIScreen.main.bounds.size.width, height: UIScreen.main.bounds.size.height)
// hide show control
avPlayerController.showsPlaybackControls = false
// play video
avPlayerController.player?.play()
self.view.addSubview(avPlayerController.view)
}
}
很抱歉,但我想在一個UIView – Hamza
被稱爲「vidview」」 – Hamza
我想打它沒有控制 – Hamza