¿Cómo cambio el color del texto de UIPickerView con múltiples componentes en Swift?

El siguiente código cambiará el color de la fuente de la vista del selector de los 3 componentes. Sin embargo, se bloquea cuando intento girar la rueda. Creo que tiene que ver con la función didSelectRow. ¿Quizás las dos funciones tienen que estar anidadas de alguna manera? ¿Alguna idea?

    func pickerView(pickerView: UIPickerView, attributedTitleForRow row: Int, forComponent component: Int) -> NSAttributedString? {
    var attributedString: NSAttributedString!
    if component == 0 {
        attributedString = NSAttributedString(string: a.text!, attributes: [NSForegroundColorAttributeName : UIColor.redColor()])
    }
    if component == 1 {
        attributedString = NSAttributedString(string: b.text!, attributes: [NSForegroundColorAttributeName : UIColor.redColor()])
    }
    if component == 2 {
        attributedString = NSAttributedString(string: c.text!, attributes: [NSForegroundColorAttributeName : UIColor.redColor()])
    }
    return attributedString
}


func pickerView(pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int){

    switch component {
    case 0:
        aOutput.text = a[row]      -->  **Code breaks**
    case 1:
        bOutput.text = b[row]
    case 2:
        cOutput.text = c[row]
    default:
        10
    }

Respuestas a la pregunta(3)

Su respuesta a la pregunta