When I do this code, the FbMediaView is like loading the ads video on the main thread but it's not freezing when displaying an image. I don't understand why ?
let nativeAd = self.adsManager.nextNativeAd()
let cell : AdHomeCell? = self.collectionView!.dequeueReusableCellWithReuseIdentifier("AdHomeCell", forIndexPath: indexPath) as? AdHomeCell
cell?.createForAd(nativeAd)
nativeAd?.registerViewForInteraction(cell!, withViewController: self)
return cell
I have the latest Facebook SDK (4.8.0)