I made my prototype cell in the storyboard and setted its identifier, but when I call
cell=[tableView dequeueReusableCellWithIdentifier:@"ident" forIndexPath:indexPath];
in my cellForRowAtIndexPath
method I get exception:
unable to dequeue a cell with identifier ident - must register a nib or a class for the identifier or connect a prototype cell in a storyboard
Now, I know that, if I declare a prototype cell in storyboard, I don't need to explicitly register it. then...Why this exception?