我有一个 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];
}
}
当我运行它时,屏幕上什么也没有显示。我在这里想念什么?