我需要向AdBannerView
插入TableViewController
,并且位置应该在屏幕的底部。我使用this帖子作为指南,由Daniel Storm
广告已展示,但即使tableview
中只有一个单元格,我也需要向下滚动才能看到它。此外,我希望广告对屏幕旋转做出反应。
AppDelegate.swift
import UIKit
import iAd // Import iAd
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate, ADBannerViewDelegate {
//包括我们横幅的代表
var window: UIWindow?
var adBannerView = ADBannerView() // Create our one ADBannerView
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Set delegate and hide banner initially
adBannerView.delegate = self
adBannerView.hidden = true
return true
}
func bannerViewDidLoadAd(banner: ADBannerView!) {
print("bannerViewDidLoadAd")
adBannerView.hidden = false
}
func bannerViewActionDidFinish(banner: ADBannerView!) {
print("bannerViewActionDidFinish")
}
func bannerView(banner: ADBannerView!, didFailToReceiveAdWithError error: NSError!) {
print("didFailToReceiveAdWithError: \(error)")
adBannerView.hidden = true
}
ViewController.swift (在我的情况下是tableviewcontroller)
import UIKit
class ViewController: UIViewController {
let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate // Create reference to our app delegate
override func viewWillAppear(animated: Bool) {
// Position
appDelegate.adBannerView.center = CGPoint(x: view.frame.midX,
y: view.frame.height - appDelegate.adBannerView.frame.height / 2)
// Add to view
view.addSubview(appDelegate.adBannerView)
}
答案 0 :(得分:3)
如果你想要的只是屏幕底部的横幅广告,你可以简单地说出像
这样的内容override func viewDidLoad() {
super.viewDidLoad()
self.canDisplayBannerAds = true
}
它会像他们说的那样自动运作。
我建议观看this视频以了解iAd API
答案 1 :(得分:1)
我认为你在VC中添加bannerView后添加了你的tableview,所以tableView覆盖了bannerView,你可以调整bannerView的zPosition来重新排序它们,在viewWillAppear
中添加这一行:
adBannerView.layer.zPosition = 10
顺便说一下,我认为这个过程应该在ViewDidLoad
中完成。