Reputation: 852
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
Reputation: 12910
Simple:
Add UIImageView
to your Storyboard to the most bottom of your view hierarchy.
.
Upvotes: 43