图像视图未出现在屏幕上

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 文件夹中

【讨论】:

以上是关于图像视图未出现在屏幕上的主要内容,如果未能解决你的问题,请参考以下文章

导航后未附加回收站视图

图像未立即在表格视图中加载

在视图出现在屏幕上之前进行转换时,自动布局错误地定位子视图

将子视图添加到屏幕问题

Android - imageView 上方的视图出现在某些设备上,但未出现在 Nexus 4 上

图像未显示在 iPhone 启动屏幕中