作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在我的应用程序中为所有 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/
我是一名优秀的程序员,十分优秀!