1

我有一个 TagDisplayCell.xib 和关联的 TagDisplayCell.m。在.m文件中,我像这样加载视图。

- (id)initWithCoder:(NSCoder *)aDecoder{
    self = [super initWithCoder: aDecoder];
    if(self){
        //load the interface file from .xib
        [[NSBundle mainBundle] loadNibNamed:@"TagDisplayCell" owner:self options:nil];

        //add as subview
        [self addSubview:self.view];

        self.view.translatesAutoresizingMaskIntoConstraints = NO;

        [self addConstraint:[self pin:self.view attribute:NSLayoutAttributeTop]];
        [self addConstraint:[self pin:self.view attribute:NSLayoutAttributeLeft]];
        [self addConstraint:[self pin:self.view attribute:NSLayoutAttributeBottom]];
        [self addConstraint:[self pin:self.view attribute:NSLayoutAttributeRight]];
    }

    return self;
}

在我的视图控制器中有一个垂直UiStackView(以便内容堆叠成行)。我想向TagDisplayCell这个 UiStackView 添加几个实例。这就是我正在做的事情。

//create all the views 
for(int i=0; i<[commentsAndTagsArray count]; i++)
{
    NSObject *obj =commentsAndTagsArray[i];
    if ([obj isKindOfClass:[Tag class]])
    {
        Tag *tempTag = ((Tag*) obj);
        TagDisplayCell *tempTagCell = [[TagDisplayCell alloc] initWithFrame:frame];
        [uiStackView addSubview:tempTagCell];
    }
}

当我运行它时,屏幕上什么也没有显示。我在这里想念什么?

更新:这是我的 TagDisplayCell.xib" 在此处输入图像描述

4

1 回答 1

0

当您调用initWithFrame:View 子类时,它不是从 XIB 加载的。

以与您在第一个代码片段中相同的方式执行视图的加载:

TagDisplayCell *tempTagCell = (TagDisplayCell *)[[[NSBundle mainBundle] loadNibNamed:@"TagDisplay" owner:nil options:nil] firstObject];
于 2015-11-01T18:09:27.367 回答