web-dev-qa-db-fra.com

Comment définir une image d’arrière-plan dans Xcode avec swift?

Comment puis-je définir une image d'arrière-plan pour mon contrôleur de vue principal dans Xcode 6 à l'aide de swift? Je sais que vous pouvez le faire dans l'éditeur adjoint comme ci-dessous: 

override func viewDidLoad() {
    super.viewDidLoad()
    view.backgroundColor = UIColor.yellowColor()
}

Quel est le code pour définir l’arrière-plan d’une image figurant dans mon dossier d’actifs?

40
GuiGui23
override func viewDidLoad() {
    super.viewDidLoad()
    self.view.backgroundColor = UIColor(patternImage: UIImage(named: "background.png"))
}
86
Hayley Guillou

Je suis débutant en développement iOS et j'aimerais donc partager les informations complètes que j'ai obtenues dans cette section. 

Tout d'abord, à partir des ressources d'image (images.xcassets), créez un ensemble d'images.

Selon Documentation , toutes les tailles doivent créer une image d’arrière-plan.

For iPhone 5:
   640 x 1136

   For iPhone 6:
   750 x 1334 (@2x) for portrait
   1334 x 750 (@2x) for landscape

   For iPhone 6 Plus:
   1242 x 2208 (@3x) for portrait
   2208 x 1242 (@3x) for landscape

   iPhone 4s (@2x)      
   640 x 960

   iPad and iPad mini (@2x) 
   1536 x 2048 (portrait)
   2048 x 1536 (landscape)

   iPad 2 and iPad mini (@1x)
   768 x 1024 (portrait)
   1024 x 768 (landscape)

   iPad Pro (@2x)
   2048 x 2732 (portrait)
   2732 x 2048 (landscape)

appeler l'image background nous pouvons appeler une image depuis une ressource image en utilisant cette méthode UIImage(named: "background") voici un exemple de code complet 

  override func viewDidLoad() {
          super.viewDidLoad()
             assignbackground()
            // Do any additional setup after loading the view.
        }

  func assignbackground(){
        let background = UIImage(named: "background")

        var imageView : UIImageView!
        imageView = UIImageView(frame: view.bounds)
        imageView.contentMode =  UIViewContentMode.ScaleAspectFill
        imageView.clipsToBounds = true
        imageView.image = background
        imageView.center = view.center
        view.addSubview(imageView)
        self.view.sendSubviewToBack(imageView)
    }
38
Mina Fawzy
override func viewDidLoad() {

    let backgroundImage = UIImageView(frame: UIScreen.main.bounds)
    backgroundImage.image = UIImage(named: "bg_image")
    backgroundImage.contentMode = UIViewContentMode.scaleAspectfill
    self.view.insertSubview(backgroundImage, at: 0)

}
17
User9527

Vous pouvez aussi essayer ceci, qui est vraiment une combinaison de réponses précédentes d'autres afficheurs ici:

    let backgroundImage = UIImageView(frame: UIScreen.main.bounds)
    backgroundImage.image = UIImage(named: "RubberMat")
    backgroundImage.contentMode =  UIViewContentMode.scaleAspectFill
    self.view.insertSubview(backgroundImage, at: 0)
11
Mark Thacker

Swift 4

view.layer.contents = #imageLiteral (resourceName: "webbg"). cgImage

6
Ali

Pour Swift 4

let backgroundImage = UIImageView(frame: UIScreen.main.bounds)
backgroundImage.image = UIImage(named: "bg_name.png")
backgroundImage.contentMode = UIViewContentMode.scaleAspectFill
self.view.insertSubview(backgroundImage, at: 0)
5
Iryna Batvina

Image d'arrière-plan de API dans Swift 4 (avec Kingfisher ):

import UIKit
import Kingfisher

extension UIView {

func addBackgroundImage(imgUrl: String, placeHolder: String){
    let backgroundImage = UIImageView(frame: self.bounds)
    backgroundImage.kf.setImage(with: URL(string: imgUrl), placeholder: UIImage(named: placeHolder))
    backgroundImage.contentMode = UIViewContentMode.scaleAspectFill
    self.insertSubview(backgroundImage, at: 0)

}
}

Usage:

someview.addBackgroundImage(imgUrl: "yourImgUrl", placeHolder: "placeHolderName")
0
babak