iOS tableView 嵌套tableView或者collectionView自动布局下的更新布局

环境:如题

[self.tableView reloadData];

 [self.tableView setNeedsLayout];

 [self.tableView layoutIfNeeded];

   [self.tableView mas_updateConstraints:^(MASConstraintMaker *make) {

        make.height.equalTo(@(self.tableView.contentSize.height)).priorityLow();

    }];

如果是collectionView

make.height.equalTo(@(self.collection.collectionViewLayout.collectionViewContentSize. height)) .priorityLow();

你可能感兴趣的:(iOS tableView 嵌套tableView或者collectionView自动布局下的更新布局)