EDIT
This is my current code with the programmed buttons.
    override func viewDidLoad() {
    super.viewDidLoad()
    self.playVideo()
    var filter = UIView()
    filter.frame = self.view.frame
    filter.backgroundColor = UIColor.orangeColor()
    filter.alpha = 0.15
    self.view.addSubview(filter)
    // Do any additional setup after loading the view, typically from a nib.
    //Add Images
    var logoImage : UIImageView
    logoImage = UIImageView(frame:CGRectMake(136, 50, 102, 104));
    logoImage.image = UIImage(named:"patchicon.png")
    self.view.addSubview(logoImage)
    var textLogo : UIImageView
    textLogo = UIImageView(frame:CGRectMake(51, 0, 273, 371));
    textLogo.image = UIImage(named:"logopatch.png")
    self.view.addSubview(textLogo)
    //Add Buttons
    let buttonLogin = UIButton.buttonWithType(.Custom) as! UIButton
    buttonLogin.frame = CGRectMake(16, 519, 343, 60)
    buttonLogin.layer.cornerRadius = 0.2 * buttonLogin.bounds.size.width
    buttonLogin.addTarget(self, action: "buttonTouched", forControlEvents: UIControlEvents.TouchUpInside)
    buttonLogin.setImage(UIImage(named:"loginButton.png"), forState: .Normal)
    view.addSubview(buttonLogin)
    let buttonRegister = UIButton.buttonWithType(.Custom) as! UIButton
    buttonRegister.frame = CGRectMake(16, 587, 343, 60)
    buttonRegister.layer.cornerRadius = 0.2 * buttonRegister.bounds.size.width
    buttonRegister.addTarget(self, action: "buttonTouched2", forControlEvents: UIControlEvents.TouchUpInside)
    buttonRegister.setImage(UIImage(named:"registerButton.png"), forState: .Normal)
    view.addSubview(buttonRegister)
}
func buttonTouched()
{
    performSegueWithIdentifier("loginTouched", sender: nil)
}
func buttonTouched2()
{
    performSegueWithIdentifier("registerTouched", sender: nil)
}
This is what my Storyboard looks like: https://i.stack.imgur.com/MlEhI.png
How can I program these buttons further to switch into new view controllers? For instance, I want to click the register button and I want the current MainViewController to switch to a new one that will have the information for the user to sign up and so forth... Thanks!
 
     
     
     
    