ASVideoNode
기본 사용법
let videoNode = ASVideoNode()
let asset = AVAsset(url: URL(string: "http://www.w3schools.com/html/mov_bbb.mp4")!)
videoNode.asset = asset자동 재생, 자동 반복 재생, 무음
videoNode.shouldAutoplay = true
videoNode.shouldAutorepeat = false
videoNode.muted = truePlaceholder Image

ASVideoNode Delegate
ASVideoNode로 피드 구현시 유의사항
Last updated
Was this helpful?