0

我不知道我怎么能复制UIView它的内容。或者甚至有可能吗?

UIView在 .xib 文件中制作了一个标签和一个按钮。现在我希望仅使用不同的标签文本复制此视图 n 次。

我正在尝试这样做,但是这样我只能得到显示的最后一个对象。就像。_view1_IBOutlet_view1Label

    NSMutableArray *Info = [[NSMutableArray alloc]initWithCapacity:number.intValue];
    for(int i = 0; i != number.intValue; i++)
    {
        NSString *number = [NSString stringWithFormat:@"Zona%i ",[[NSUserDefaults standardUserDefaults] stringForKey:@"ObjectNumber"].intValue];
        NSString *zona = [NSString stringWithFormat:@"%@%i",number, i+1];
        NSString *parinkta = [[NSUserDefaults standardUserDefaults] stringForKey:zona];
        _view1Label.text = parinkta;
        _view1.hidden = false;
        CGRect newrect = CGRectMake(_view1.frame.origin.x, _view1.frame.origin.y + (80 * i), _view1.frame.size.width, _view1.frame.size.height);
        _view1.frame = newrect;
        [Info addObject:_view1];
    }
    for(int i = 0; i != number.intValue; i++)
    {
        UIView *add = [Info objectAtIndex:i];
        [self.view addSubview:add];
    }

我想你会明白我想要做什么,也许我这样做的想法是完全错误的,所以任何人都可以帮助我走上这条道路吗?

4

3 回答 3

1

从笔尖多次加载视图,调整您加载的每个副本的标签内容。这比尝试在内存中复制 UIView 内容更容易、更短、更不容易出错。

下面是一个UINib用于访问 nib 内容的示例:

 UINib *nib = [UINib nibWithNibName:@"nibName" bundle:nil];
 NSArray *nibContents = [nib instantiateWithOwner:nil options:nil];

 // Now nibContents contains the top level items from the nib.
 // So a solitary top level UIView will be accessible
 // as [nibContents objectAtIndex:0]

 UIView *view = (UIView *)[nibContents objectAtIndex:0];

 // assumes you've set the tag of your label to '1' in interface builder
 UILabel *label = (UILabel *)[view viewWithTag:1];
 label.text = @"My new text";

因此,只需为您想要的每个 nib 实例重复上述代码即可。

于 2012-12-04T08:53:22.353 回答
0

如果您想显示n视图,那么您必须创建视图n时间,在第一个 for 循环内,您不能将单个视图放置在多个位置

于 2012-12-04T08:53:52.153 回答
0

如果您是通过代码创建第一个视图,那么您可以使用以下方法。

改变你的 for 循环,如:

for(int i = 0; i != number.intValue; i++)
    {
        NSString *number = [NSString stringWithFormat:@"Zona%i ",[[NSUserDefaults standardUserDefaults] stringForKey:@"ObjectNumber"].intValue];
        NSString *zona = [NSString stringWithFormat:@"%@%i",number, i+1];
        NSString *parinkta = [[NSUserDefaults standardUserDefaults] stringForKey:zona];
        UIView *tempView = [[UIView alloc] init];
        UILabel *tempLabel = [[UILabel alloc] init];
        tempLabel.frame = _view1Label.frame;
        tempLabel.text = _view1Label.text;
        [tempView addSubview: tempLabel];
        tempView.frame = _view1.frame;
        _view1Label.text = parinkta;
        _view1.hidden = false;
        CGRect newrect = CGRectMake(_view1.frame.origin.x, _view1.frame.origin.y + (80 * i), _view1.frame.size.width, _view1.frame.size.height);
        _view1.frame = newrect;
        [Info addObject:tempView];
    }
于 2012-12-04T09:16:14.010 回答