可以在SCNPlane上使用GADBannerView吗?

时间:2019-08-06 14:45:41

标签: ios swift scenekit gadbannerview

我正在尝试在SCNPlane中显示GADBannerView。代码大致如下所示:

let banner = GADBannerView(adSize: kGADAdSizeSmartBannerPortrait)
banner.rootViewController = self
banner.load(GADRequest())

let viewMaterial = SCNMaterial()
viewMaterial.diffuse.contents = bannerView

let plane = SCNPlane(width: 320, height: 50)
plane.materials = [viewMaterial]

let planeNode = SCNNode(geometry: plane)
planeNode.position = SCNVector3(0, 5, -10)

sceneView.scene.rootNode.addChildNode(planeNode)

这种类型的作品,但是横幅却是这样显示的,我想GADBannerView上有一些透明的东西,不能正确处理: enter image description here

这甚至可能吗?如果是,如何,如果不是,为什么不。 ;)

1 个答案:

答案 0 :(得分:0)

未记录且不支持将UIView层次结构显示为contents的{​​{1}}。