图像视图未出现在屏幕上
Posted
技术标签:
【中文标题】图像视图未出现在屏幕上【英文标题】:Image view doesn't appear on the screen 【发布时间】:2020-12-11 11:03:51 【问题描述】:我正在尝试在我的屏幕上添加背景图像并设置一些约束,但不幸的是图像视图没有出现,我不知道原因是什么。我检查了图像文件是否在项目文件夹中。
import UIKit
class ViewController: UIViewController
let backgroundImageView = UIImageView()
override func viewDidLoad()
super.viewDidLoad()
setBackground()
func setBackground()
view.addSubview(backgroundImageView)
backgroundImageView.translatesAutoresizingMaskIntoConstraints = false
backgroundImageView.topAnchor.constraint(equalTo: view.topAnchor).isActive = true
backgroundImageView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true
backgroundImageView.leadingAnchor.constraint(equalTo: view.leadingAnchor).isActive = true
backgroundImageView.trailingAnchor.constraint(equalTo: view.trailingAnchor).isActive = true
backgroundImageView.image = UIImage(named: "background-test-image")
【问题讨论】:
你遇到了什么错误? 【参考方案1】:把你的图片放到 Assets.xcassets 文件夹中
【讨论】:
以上是关于图像视图未出现在屏幕上的主要内容,如果未能解决你的问题,请参考以下文章