UIScrollView 子控件的自動佈局經驗

 

 

按照正常的自動佈局方式給UIScrollview進行佈局的話,子控件不顯示,這是由於ScrollView的content size進行自動佈局的話須要經過子控件進行約束,則就須要處理好子控件的佈局佈局

須要注意如下兩點:spa

1.子空間根據scrollview的父容器進行約束it

2,固定好子空間的寬高io

demo:table

_scrollView = [[UIScrollView alloc] init];
    _scrollView.backgroundColor = [UIColor whiteColor];
    _scrollView.delegate = self;
    _scrollView.scrollsToTop = NO;
//    _scrollView.decelerationRate = UIScrollViewDecelerationRateFast;
    _scrollView.showsHorizontalScrollIndicator = NO;
    _scrollView.showsVerticalScrollIndicator = NO;
    
    [self.imagesView addSubview:_scrollView];
    [_scrollView autoPinEdgesToSuperviewEdges];
    
    _tableView = [[ZKTableView alloc] init];
    _tableView.backgroundColor = [UIColor whiteColor];
    _tableView.dataSource = self;
    _tableView.delegate = self;
    _tableView.scrollsToTop = NO;
    if(IS_IphoneX) {
        [_tableView setContentInset:UIEdgeInsetsMake(0, 0, 44 + 20, 0)];
    } else {
        [_tableView setContentInset:UIEdgeInsetsMake(0, 0, 20, 0)];
    }
    [self.scrollView addSubview:_tableView];
    [_tableView autoPinEdgesToSuperviewEdges];
    [_tableView autoMatchDimension:ALDimensionHeight toDimension:ALDimensionHeight ofView:self.imagesView];
    [_tableView autoMatchDimension:ALDimensionWidth toDimension:ALDimensionWidth ofView:self.imagesView];ast

相關文章
相關標籤/搜索