美文网首页
获取tableView或者collectionView或者web

获取tableView或者collectionView或者web

作者: 微小的沙土 | 来源:发表于2023-02-11 16:21 被阅读0次

    监听contentSize变化

    [self.tableView addObserver:self forKeyPath:@"contentSize" options:NSKeyValueObservingOptionNew context:nil];
    
    - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSKeyValueChangeKey,id> *)change context:(void *)context{
        CGFloat height = self.tableView.contentSize.height;
    //    NSLog(@"亲高度%f",height);
        [self.tableView mas_updateConstraints:^(MASConstraintMaker *make) {
            make.height.mas_equalTo(height);
        }];
    }
    
    

    相关文章

      网友评论

          本文标题:获取tableView或者collectionView或者web

          本文链接:https://www.haomeiwen.com/subject/dmxrkdtx.html