0

我的问题有点难以描述:

我正在开发一个笔记应用程序。我的“创建新笔记” - 屏幕包含一个垂直堆栈视图,用于显示与新笔记关联的待办事项。在此堆栈视图下方有一个 UIView ,如果用户愿意,可以在其中向便笺添加提醒:

Stackview 下面有提醒视图

stackview 包含特定数量的子视图。我在构建用户界面时不知道这个数量,而是在运行时以编程方式添加所有子视图。我希望提醒视图始终位于我的堆栈视图下方。所以我添加了一个顶部空间约束。

顶部空间约束

但是在以编程方式将项目添加到(并因此扩大)堆栈视图时,此约束似乎没有影响。

查看重叠的堆栈视图 这就是它的样子

编辑:这是我添加子视图的代码:

[_todoContainer.subviews makeObjectsPerformSelector: @selector(removeFromSuperview)];
    int y = 0;
    for (NoteTodoEntity* entity in _note.todos) {
        NotinaryTodoView* view = [[[NSBundle mainBundle] loadNibNamed:@"NotinaryTodoView" owner:self options:nil] objectAtIndex:0];
        view.frame = CGRectMake(_todoContainer.frame.origin.x, y, _todoContainer.frame.size.width, 40);
        [view layoutIfNeeded];
        y+=40;
        view.currentEntity = entity;
        [view.todoDeleteButton addTarget:self action:@selector(todoActionPressed:) forControlEvents:UIControlEventTouchUpInside];
        [_todoContainer addSubview:view];
    }
    [self.view layoutIfNeeded];
4

1 回答 1

1

解决方案非常简单。为我的程序添加视图设置框架是错误的,我不得不使用约束和 StackView 的“addArrangedSubView”方法:

for (NoteTodoEntity* entity in _note.todos) {
        NotinaryTodoView* view = [[[NSBundle mainBundle] loadNibNamed:@"NotinaryTodoView" owner:self options:nil] objectAtIndex:0];
         [view.heightAnchor constraintEqualToConstant:40].active = true;
        [view.widthAnchor constraintEqualToConstant:self.view.frame.size.width].active = true;
        view.currentEntity = entity;
        [view.todoDeleteButton addTarget:self action:@selector(todoActionPressed:) forControlEvents:UIControlEventTouchUpInside];
        [_todoContainer addArrangedSubview:view];
    }
于 2015-11-06T09:27:04.193 回答