I am pretty new to objective-c and have a question regarding prototype cells.
I have a tableview with custom cells, and it works nicely.
Now I have also in my custom cell class overridden -(id)init
and -(id)initWithStyle: reuseIdentifier:
If I do a class check on the cell, it is clearly of my custom class, but neither init method is ever called.
So it creates them for me, but somehow avoids firing -(id)init
which seems wierd to me.
I guess I could init them on my own but it seems really wierd that they can exist without having been created?
Thank you!