1

我以编程方式在 xib 文件中创建了UILable一个 - 类awakeFromNib,我试图在mainViewController.m. 我尝试使用 anNSBundle来加载 xib 文件,但它不起作用。还有其他方法我应该加载它吗?我需要打电话awakFromNibviewDidLoad

这是我的代码:

- (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.

    [[[NSBundle mainBundle] loadNibNamed:@"customCell" owner:self options:nil]objectAtIndex:0];
    customCell *cellVC = [[cutsomCell alloc] init];

    NSLog(@"%f", cellVC.label.frame.size.height); // Results: 0.0000
}

我需要NSLog显示200,而不是0

4

1 回答 1

1

我在加载笔尖时遇到了最糟糕的运气,并且在寻找一种简单的方法时遇到了问题。这就是过去对我有用的方法。

将此添加到 customCell.m

- (id)initWithNib
{
    // where MyCustomView is the name of your nib
    UINib *nib = [UINib nibWithNibName:@"customCell" bundle:[NSBundle mainBundle]];
    self = [[nib instantiateWithOwner:self options:nil] objectAtIndex:0];
    return self;
}

将此添加到 customCell.h

- (id)initWithNib;

现在在您的视图控制器中执行此操作

customCell *cellVC = [[cutsomCell alloc] initWithNib];

我在这里找到了一个很好的链接,在这里使用了这个例子

于 2015-02-03T03:34:37.573 回答