有没有办法设置(最好在 Storyboard IB 中)一个图像,该图像将用作整个 Storyboard中所有 ViewController 的背景图像。我不想在每个 ViewController 中添加背景图像或在代码中复制它。
我可以创建一个 UIViewController
子类(例如,将其命名为 DefaultViewController
),在其中一种初始化方法(例如 viewDidLoad,但不要忘记你是否在这个类的子类中重写它来调用它的 super 方法)。
然后,让你所有的 View Controller 都继承自 DefaultViewController
示例代码:
class DefaultViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
self.view.backgroundColor = = UIColor.redColor()
}
}
class SomeViewController: DefaultViewController {
override func viewDidLoad() {
// this call makes the background red, you can also not override this method and it will work too
super.viewDidLoad()
}
}
关于ios - Swift:所有 ViewController 的默认 Storyboard背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38031281/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (https://ogeek.cn/) | Powered by Discuz! X3.4 |