gpt4 book ai didi

objective-c - iOS(重新)使用 NIB 作为模板

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:18:21 24 4
gpt4 key购买 nike

我创建了一个具有不同 View 的 nib 文件。我打算使用这个 nib 文件作为模板,就像在网络(即 html)中一样。因此,创建这个 nib 的新实例,用实际数据填充它,创建另一个 nib 的新实例,并用实际数据填充等等......

但是当我尝试这样做时,nib 实例的行为并不相同。只会创建一个。我错过了什么吗? nib 文件不应该这样使用吗?

这是我尝试使用我的 nib 文件的方式 -

    int yCoord = 0;

for(int i=0; i<[resultSet count]; i++)
{
[[NSBundle mainBundle] loadNibNamed:@"msgView" owner:self options:nil];
UIView *tmpMsgView = [[UIView alloc] initWithFrame:CGRectMake(0, yCoord, msgView.view.frame.size.width, msgView.view.frame.size.height)];
tmpMsgView = msgView.view;

UILabel *senderLabel = (UILabel *)[tmpMsgView viewWithTag:1];
[senderLabel setText:@"trial"];

[self.view addSubview:tmpMsgView];
[tmpMsgView release];
yCoord += msg.view.frame.size.height;

}

这个 msgView 连接到 nib 文件(通过 IB)并且那个 nib 文件的所有者也被定义为这个 viewController类。

最佳答案

您的代码一遍又一遍地添加相同的实例,而不是每次都添加一个新实例。

UIView *testView = [[UIView alloc] init];
testView.backgroundColor = [UIColor blueColor];
for (int i=0; i<5; i++) {
testView.frame = CGRectMake(0.0, (i+1)*40.0, 200.0, 20.0);
[self.window addSubview:testView];
}
[testView release];

for (int i=0; i<5; i++) {
UIView *testView = [[UIView alloc] init];
testView.backgroundColor = [UIColor blueColor];
testView.frame = CGRectMake(0.0, (i+1)*40.0, 200.0, 20.0);
[self.window addSubview:testView];
[testView release];
}

是两个截然不同的东西。第一个实际上意义不大,结果是一个蓝色条,第二个更有意义,结果是 5 个蓝色条 -- 我想这就是你想要的。

看下面,它将创建 5 个具有所有不同颜色的矩形 -- 这是为了说明每个矩形都是从 nib 加载的单独实例:

for (int i=0; i<5; i++) {
NSArray *nibObjects = [[NSBundle mainBundle] loadNibNamed:@"aView" owner:self options:nil];
UIView *nibView = [nibObjects objectAtIndex:0];

nibView.backgroundColor = [UIColor colorWithRed:(i+1)*0.14 green:(i+1)*0.11 blue:200.0 alpha:1.0];
nibView.frame = CGRectMake(0.0, (i+1)*40.0, 200.0, 20.0);
[self.window addSubview:nibView];
}

现在,如果我们在循环之前只分配一次 nibObjects 数组,我们再次遇到同样的问题,因为我们一遍又一遍地添加相同的实例,这将导致只有一个矩形:

NSArray *nibObjects = [[NSBundle mainBundle] loadNibNamed:@"aView" owner:self options:nil];        
for (int i=0; i<5; i++) {
UIView *nibView = [nibObjects objectAtIndex:0];

nibView.backgroundColor = [UIColor colorWithRed:(i+1)*0.14 green:(i+1)*0.11 blue:200.0 alpha:1.0];
nibView.frame = CGRectMake(0.0, (i+1)*40.0, 200.0, 20.0);
[self.window addSubview:nibView];
}

希望对你有帮助

关于objective-c - iOS(重新)使用 NIB 作为模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7461032/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com