我使用xib文件在UITableView
中有一个自定义单元格。我以编程方式创建了一个高度为200,宽度为50的UILabel
。当我在标签的宽度和高度的NSLog
中执行customCell.m
时,它给了我w:50和h:200。但是当我在NSLog
中进行mainViewController.m
时,它的高度和宽度为0。
不确定为什么会那样做。我需要在mainViewController.m
这是我的代码:
customCell.m
- (void)awakeFromNib
{
self.label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 50, 200)];
[self.label setText:@"This is a label"];
[self.myView addSubview:self.label];
NSLog(@"%f", self.label.frame.size.height); // Results: 200.0000
}
mainViewController.m
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
customCell *cellVC = [[cutsomCell alloc] init];
NSLog(@"%f, %f", cellVC.label.frame.size.height); // Results: 0.0000
}
如果我使用xib文件,那么awakeFromNib
是否应该在mainViewController.m
调用viewDidLoad
?如果没有,我该如何在viewDidLoad
中调用它?
答案 0 :(得分:0)
awakeFromNib
是从nib加载时调用的初始化程序..你添加一个视图并将其类更改为storyboard / nib中的自定义类,此porcess将调用awakeFromNib
method..not编程
以编程方式完成时,请使用init方法或自定义初始化程序
-(id)init
{
//class super init calls
//then method calls
self.label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 50, 200)];
[self.label setText:@"This is a label"];
[self.myView addSubview:self.label];
//return self
}
示例强>
- (id) init {
// Call superclass's initializer
self = [super init];
if(self) {
self.label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 50, 200)];
[self.label setText:@"This is a label"];
[self.myView addSubview:self.label];
}
return self;
}