From Xcode 8 update it just noticed that, for UITableViewCell
's awakeFromNib
method with no content inside(automatically created while adding custom cell class with xib file), giving me the following warning.
Method possibly missing a [super awakeFromNib] call
From this link, got idea why should we implement super class methods. But I need to know what will be the impact if we are not implementing this method.
Is there any performance issues or any other kind of issues, in case if awakeFromNib
in any of the subclasses of UIKit classes is not implemented?