I have a problem loading different nib files in one tableView. I saw this similar post here. Unfortunately it doesn’t help me.
What I need is to be able to load firstNib for first x cells and load secondNib for last n-x cells. I know that if I put if clause inside if (cell == nil) than there is a problem with reusing cells – first x cells gets repeated after m cells.
Could someone please explain it to me how can I solve this problem?
Thanks!
Use a different reuse identifier for each type of cell – set the reuse identifier depending on the row number, then dequeue / load the specific type of cell.