I know that I can not reuse cells by not calling this method:
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"SomeID"]
Based on the description available here.
But what if I'm using a Prototype cell?
Because if I don't specify the Identifier of my prototype cell, my tableview only shows blank cells.