由于我在我的琐事应用程序中启用了iAd,因此每次加载新问题时应该更改的背景不再发生变化。当我注释掉canDisplayBannerAds行时,它再次起作用。关于什么可能出错的任何想法?
import UIKit
import iAd
class ViewController: UIViewController {
@IBOutlet weak var funFactLabel: UILabel!
@IBOutlet weak var funFactButton: UIButton!
let factBook = FactBook()
let colorWheel = ColorWheel()
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
funFactLabel.text = factBook.randomFact()
self.canDisplayBannerAds = true
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
@IBAction func showFunFact() {
let randomColor = colorWheel.randomColor()
view.backgroundColor = randomColor
funFactButton.tintColor = randomColor
funFactLabel.text = factBook.randomFact()
}
}
答案 0 :(得分:1)
您应该使用view.backgroundColor = randomColor
originalContentView.backgroundColor = randomColor
我是如何得到解决方案的:
来自documentation for canDisplayBannerAds
另见
originalContentView
当视图控制器启用横幅广告时,系统会将视图控制器的内容视图置于系统管理的新内容视图中。这允许系统在显示横幅广告时动态调整原始内容视图的大小,以及管理横幅广告本身的显示。此属性提供对原始内容视图的访问,而不是管理横幅广告显示的包含视图。