Hi I am making a simple login screen for my app in xCode and want to make sure that it fits any screen
import UIKit
class LoginController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
// will allow me to put a image as my UI background instead of a color
self.view.backgroundColor = UIColor(patternImage: UIImage(named:"BestBackground")!)
}
}
This successfully loads the image but i just want to make sure it will load on any screen size from iPhone 6 to iPhone 6 Plus