Where can I do setup after loading my UITableViewCell subclass from a xib
I have to do some setup aft开发者_运维知识库er loading my UITableViewCell subclass from a xib. I can't do it in
-(id)initWithCoder:aDecoder{}
because the IBoutlets haven't been set at this point. Is there another method after this point that is called?
You can use IBOutlets inside:
- (void)layoutSubviews
精彩评论