I\'m not sure where the error is here, having looked at other similar issues. I received an Assertion failure.
Terminating app due to uncaught exception \'N
In the below code you have written @"cell" (written with a small c), but you have to use @"Cell" (C must be capital).
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
{
UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];