关于awakeFromNib的学习

来源:互联网 发布:芬琳漆怎么样 知乎 编辑:程序博客网 时间:2024/05/14 20:49
When a nib is loaded, the nib loader allocates and initializes all objects, then hooks up all of their outlets and actions. Because of the order in which this happens, you cannot access outlets in your initializer. You can try, but they will all be nil.

After all outlets and actions are connected, the nib loader sends awakeFromNib to every object in the nib. This is where you can access outlets to set up default values or do configuration in code. Example:


http://wiresareobsolete.com/wordpress/2010/03/awakefromnib/



@implementation SecondView- (id)initWithFrame:(CGRect)frame{    self = [super initWithFrame:frame];    if (self) {        // Initialization code    }    return self;}- (void)awakeFromNib{    [super awakeFromNib];    NSLog(@"call %s", __FUNCTION__);    self.backgroundColor = [UIColor redColor];}

一般在UIView的子类重载该方法。


@implementation BlueButton- (id)initWithFrame:(CGRect)frame{    self = [super initWithFrame:frame];    if (self) {        // Initialization code    }    return self;}- (void)awakeFromNib{    [super awakeFromNib];    NSLog(@"call %s", __FUNCTION__);    self.backgroundColor = [UIColor blueColor];    [self setTitle:@"Blue Button" forState:UIControlStateNormal];}- (id)initWithCoder:(NSCoder *)aDecoder{    NSLog(@"call %@", @"initWithCoder");    if (self = [super initWithCoder:aDecoder]) {        self.titleLabel.text = @"initWithCoder";    }    return  self;}@end

如果是从nib中加载BuleButton,方法 initWithCoder 会调用,并且先于 awakeFromNib 调用。

1 0
原创粉丝点击