如何解决我的广告 tableviewcell 无法点击,但广告显示
我的广告显示在 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
nativeAd.delegate = self
ad = nativeAd
tableVie.reloadData()
这是我在 tableviewcell 类中的代码:
install.isUserInteractionEnabled = false
先谢谢你!!!
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。