I'm trying to make a button but nothing I do will make it appear on the screen. I've looked at many other posts just like this one but none of the suggestions from those work for me. Any help would be much appreciated.
/*BUTTON: Start button*/
let startButton = UIButton(type: .RoundedRect)
startButton.setTitle("Start", forState: UIControlState.Normal)
startButton.center = CGPointMake(CGRectGetMidX(self.frame), CGRectGetMidY(self.frame)-50)
startButton.backgroundColor = UIColor.blackColor()
startButton.setBackgroundImage(UIImage(named: "Imaginary Inc Logo"), forState: UIControlState.Normal)
self.view!.addSubview(startButton)