I am trying to feed two different tables in a single UIViewController. I am taking an configureCellForTable... exception that is always the case when the cell is nil. But I do not understand which line creates the exception.
My sample code is as below;
static NSString *cellIdentifier = @"creditCardItemCell";
CreditCardItemTableViewCell *cell;
if(tableView == _creditCardsTableView)
cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if(tableView == _otherPaymentMethodsTableView)
cell = [tableView dequeueReusableCellWithIdentifier:@"paymentItemCell"];
Thanks in advance