cell.titleLabel.text = txn.funcCdDscp;
cell.totalCountLabel.text = txn.taskCount;
One of these (not sure which, but my guess would be taskCount) is a NSNumber. Text takes an NSString.
cell.titleLabel.text = txn.funcCdDscp;
cell.totalCountLabel.text = txn.taskCount;
One of these (not sure which, but my guess would be taskCount) is a NSNumber. Text takes an NSString.