this is the last error in the first part of my code, im just trying to run it and it gives me 2, this one, and one that says it is bailing out because of the last error. im just inserting a simple table, should be easy. here is my code just where the error occurs.
i can always provide my header and more code if needed.
Code:
{
// create a cell
UITableViewCell *cell = [[UITableViewCell alloc]] //location of error
initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:@"cell"
cell.textLabel.texT = [stations objectAtIndex:indexPath.row];
// return it
return cell;
}
i can always provide my header and more code if needed.