When are XIB outlet properties set?
问题 I'm trying to implement inheritance with xib files. Yes, a little strange, but let me tell you why. I have a class, SLBaseViewController that many of my view controllers inherit from. When I want a child view controller I create it in the usual way: SLHomeViewController *controller = [[SLHomeViewController alloc] initWithNibName:@"SLHomeViewController" bundle:nil]; This works fine. SLHomeViewController is an SLBaseViewController (which is a UIViewController). I'm doing this because I have