gpt4 book ai didi

ios - 作为一种常用方法,如何将图像作为我应用程序中所有 XIB 的背景?

转载 作者:行者123 更新时间:2023-11-28 05:58:58 28 4
gpt4 key购买 nike

我想在我的应用程序中为所有 XIB 放置背景图片,但我不想在我所有的 XIB 中使用 imageview。

我想制定一个通用方法,我只能采用单个 imageView 和单个 socket ,这会影响我所有的 XIB,如果我更改该 imageView 的图像,那么也会反射(reflect)到所有 XIB。

我该怎么做?

如有任何有用的回答,我们将不胜感激。

最佳答案

只需创建 BaseViewController 以及您想要的 UIImageView 背景

然后让所有其他Viewcontroller继承它

基础 View Controller :

class BaseViewController: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()


// add your Image View // with all constraints
self.view.addSubview(UIImageView())
}

}

其他 View Controller :

class ViewController: BaseViewController {

override func viewDidLoad() {
super.viewDidLoad()

}

}

关于ios - 作为一种常用方法,如何将图像作为我应用程序中所有 XIB 的背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50444234/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com