NativeContentAdView在UICollectionViewCell(Storyboard)中无法单击

时间:2016-08-21 12:12:39

标签: ios swift uicollectionview admob uicollectionviewcell

我们的广告应作为普通单元格中的单元格出现在UICollectionView中。

Example http://i63.tinypic.com/10f13kk.png

我使用故事板来创建UI。

Structure http://i67.tinypic.com/k4h409.png

UICollectionView的UIView配置为GADNativeContentAdView。

我在广告单元格中添加以下代码:

self.nativeContentAdView.nativeContentAd = nativeAd

但广告不响应点击次数。缺什么?

其他信息: 如果我从AdMob Example code添加NativeContentAdView.xib并将其加载到我的单元格中,则点按即可:

// Create and place the ad in the view hierarchy.
let contentAdView = NSBundle.mainBundle().loadNibNamed("NativeContentAdView", owner: nil,
                                                           options: nil).first as! GADNativeContentAdView
setAdView(contentAdView)

// Associate the content ad view with the content ad object. This is required to make the ad
// clickable.
contentAdView.nativeContentAd = nativeAd

但我不想使用.xib

0 个答案:

没有答案