nunzio giulio caggegi
nunzio giulio caggegi

Reputation: 852

Set background image in storyboard

Can i set the background image from storyboard? I've set background in code:

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

Upvotes: 19

Views: 48729

Answers (1)

pedrouan
pedrouan

Reputation: 12910

Simple:

Add UIImageView to your Storyboard to the most bottom of your view hierarchy.

.

. enter image description here

Upvotes: 43

Related Questions