Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ios 7 dequeueReusableCellWithIdentifier:forIndexPath method - does it need registerClass method

I am using ios 7.

Quick question. I have a working program that uses dequeueReusableCellWithIdentifier:forIndexPath to display cells with two different prototypes. I never used the UITableView registerClass method.

Does this mean that I am not reusing the cells? My thinking is that this is not the case (as I have fixed bugs before in this app which were related to cells retaining prior states).

If I actually use registerClass now (in viewDidLoad for the tableVieW), my data is not being shown - any ideas why?

Thank you!

UPDATE I add the registerClass code in viewDidLoad as follows:

[self.tableView registerClass:[ProtoCell1 class] forCellReuseIdentifier:@"proto1"];
[self.tableView registerClass:[ProtoCell2  class] forCellReuseIdentifier:@"proto2"];
like image 820
serverman Avatar asked Feb 16 '23 00:02

serverman


1 Answers

If the cell is created using prototypes within a storyboard it is not necessary to register the class.

Using

 registerClass:forCellWithReuseIdentifier

will prevent your view from rendering if it was already declared in Interface Builder. If you registered your cell identifier in storyboard and you are using

  dequeueReusableCellWithReuseIdentifier: 

then you should be reusing cells

like image 131
Kyle C Avatar answered Apr 06 '23 01:04

Kyle C