NSDictionary para UITableView

Eu tenho uma solicitação JSON para obter isso:

bills =     (
        {
    id = 1;
    name = "Cursus Nibh Venenatis";
    value = "875.24";
},
        {
    id = 2;
    name = "Elit Fusce";
    value = "254.02";
}
);

Estou criando um NSDictionary para isso.

Estou usando o JSONKit e quero saber como posso preencher meu UITableView com esses valores? Obrigado por qualquer ajuda!

EDITAR

NSLog(@"my dictionary = %@", resultsDictionary);
my dictionary = {
bills =     (
            {
        id = 1;
        name = "Cursus Nibh Venenatis";
        value = "875.24";
    },
            {
        id = 2;
        name = "Elit Fusce";
        value = "254.02";
    }
);
}

questionAnswers(2)

yourAnswerToTheQuestion