views:

366

answers:

1

I am thinking about this problem now for very long.

I try to use different types of cells in my table, that each have their own cell controller and have a reuseIdentifier AND load from NIB.

The problem boils down to this: You can either init a Cell via [UITableViewCell initWithStyle:reuseIdentifier:] or via [NSBundle loadNibNamed:owner:options:].

Do i overlook something or is there a possibility to have both: load from nib and use reuseIdentifier?

A: 

Asking a question can sometimes lead you to the right track :I

The answer can be found here: http://209.85.135.132/search?q=cache%3Aoyc0G113wwgJ%3Adiscussions.apple.com/thread.jspa%3FthreadID%3D1664267+reusdeIdentifier+loadNibNamed&cd=1&hl=en&ct=clnk

Tomen