NSDictionary zu UITableView

Ich habe eine JSON-Anfrage mit folgendem Inhalt:

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

Ich erstelle ein NSDictionary dafür.

Ich verwende JSONKit und möchte wissen, wie ich UITableView mit diesen Werten füllen kann. Danke für jede Hilfe!

BEARBEITEN

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

Antworten auf die Frage(2)

Ihre Antwort auf die Frage