Comment rendre UITableview avec Textfield dans swift?

Je veux faire une vue de la table avec des objets textfield dans chaque cellule,

J'ai une classe personnalisée dans un swift fichier:

import UIKit

public class TextInputTableViewCell: UITableViewCell{

    @IBOutlet weak var textField: UITextField!
    public func configure(#text: String?, placeholder: String) {
        textField.text = text
        textField.placeholder = placeholder

        textField.accessibilityValue = text
        textField.accessibilityLabel = placeholder
    }
}

Ensuite dans mon ViewController j'ai

 func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{

    let cell = tableView.dequeueReusableCellWithIdentifier("TextInputCell") as! TextInputTableViewCell

    cell.configure(text: "", placeholder: "Enter some text!")

     text = cell.textField.text

    return cell

}

Qui fonctionne bien:

Comment rendre UITableview avec Textfield dans swift?

Mais, lorsque l'utilisateur saisit du texte dans le champ de texte et appuyez sur le bouton je veux stocker les chaînes de chaque champ dans un tableau.
J'ai essayé avec

text = cell.textField.text
println(text)

Mais n'imprime rien, comme si il était vide

Comment puis-je le faire fonctionner?

source d'informationauteur Zablah