我的广告显示在 tableviewcell 上,但由于某种原因,我在点击广告时无法导航到应用程序网站,这是为什么? 这是我在 cellforrowat 函数中的代码:
let cell = Bundle.main.loadNibNamed("NativeAdTableViewCell", owner: self, options: nil)?.first as! NativeAdTableViewCell
cell.img.isHidden = false
cell.install.isHidden = false
cell.adSubtitle.isHidden = false
cell.adTitle.text = ad?.headline
cell.adSubtitle.text = ad?.body
cell.img.image = ad?.icon?.image
ad?.rootViewController = self
cell.selectionStyle = UITableViewCell.SelectionStyle.none
cell.vie.nativeAd = ad
return cell
这是我在 adload 函数中的代码:
nativeAd.delegate = self
ad = nativeAd
tableVie.reloadData()
这是我在 tableviewcell 类中的代码:
install.isUserInteractionEnabled = false
先谢谢你!!!