怎么在uiteview AdMob快速显示广告?

本教程将介绍如何在uiteview AdMob快速显示广告?的处理方法,这篇教程是从别的地方看到的,然后加了一些国外程序员的疑问与解答,希望能对你有所帮助,好了,下面开始学习吧。

怎么在uiteview AdMob快速显示广告? 教程 第1张

问题描述

我对AdMob原生广告非常陌生,我检查了每个教程
网上关于怎么在表格视图中添加广告,但我没有找到任何运气
这是我到目前为止在cellforrowat函数中拥有的代码:

let cell = Bundle.main.loadNibNamed("NativeAdTableViewCell", owner: self, options: nil)?.first as! NativeAdTableViewCell
  print("ad = (ad == nil)")
  cell.adTitle.text = ad?.headline
  cell.adSubtitle.text = ad?.body
  cell.img.image = ad?.icon?.image
  cell.selectionStyle = UITableViewCell.SelectionStyle.none
  return cell

其他编码:

func adLoader(_ adLoader: GADAdLoader, didReceive nativeAd: GADUnifiedNativeAd) {
 nativeAd.delegate = self
 ad = nativeAd
}

在高级阶段感谢您

推荐答案

收到添加内容时,只需在tableView DataSource数组中添加一个空元素即可,如下所示:

func adLoader(_ adLoader: GADAdLoader, didReceive nativeAd: GADUnifiedNativeAd {
nativeAd.delegate = self
self.yourDataSource.insert("", at: 0) // add empty element in where you show your ads
ad = nativeAd
yourTableView.reloadData() 
}

之后,tableViewCell如下所示:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
 
 let data = self.yourDataSource[indexPath.row]as? [String]
 if data == nil {
  let nativeAd = self.ad //Your native ads object
  nativeAd.rootViewController = self
  let cell = tableView.dequeueReusableCell(withIdentifier: "nativecell", for: indexPath)as! nativecell // nativecell is your native ad cell
  let adView = cell.adview
  adView!.nativeAd = nativeAd
  cell.headline.text = nativeAd.headline
  cell.icon.image = nativeAd.icon?.image
  cell.body.text = nativeAd.body
  cell.action.isUserInteractionEnabled = false
  cell.action.setTitle(nativeAd.callToAction, for: UIControl.State.normal)
  return cell
 } else {
  let cell = tableView.dequeueReusableCell(withIdentifier: "regularCell", for: indexPath)as! regularCell
  return cell
 }
}

谢谢

好了关于怎么在uiteview AdMob快速显示广告?的教程就到这里就结束了,希望趣模板源码网找到的这篇技术文章能帮助到大家,更多技术教程可以在站内搜索。