¿Cómo centrar UILabel en Swift?

Estoy tratando de centrar algo de texto pero parece que no funciona.

import UIKit

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.


        let title = UILabel()
        title.text = "Some Sentence"
        title.numberOfLines = 0
        title.frame = CGRectMake(self.view.bounds.size.width/2,50,self.view.bounds.size.width, self.view.bounds.size.height) // x , y, width , height
        title.textAlignment = .Center
        title.sizeToFit()
        title.backgroundColor = UIColor.redColor()
        self.view.addSubview(title)

    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

}

Ese es el código que estoy usando, pero esto es lo que obtengo:

No es el centro de la pantalla. ¿Alguien puede decirme qué estoy haciendo mal?

Respuestas a la pregunta(4)

Su respuesta a la pregunta