iOS 8的scrollView上的試圖都不顯示(scrollView直接加在帶navigation的self.view上

iOS下,如果我們的self.view 的第一個子試圖直接就是scrollView的話,那麼ScrollVIew的所有子試圖都會下移64個像素。


self.automaticallyAdjustsScrollViewInsets = NO;



 self.headerScrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 64, self.view.frame.size.width, 30)];

    _headerScrollView.contentSize = CGSizeMake(offX, 0);

    self.headerScrollView.bounces = NO;

    self.headerScrollView.showsHorizontalScrollIndicator = NO;

    self.headerScrollView.showsVerticalScrollIndicator = NO;

    [self.headerScrollView addSubview:_headerView];

    [self.view addSubview:self.headerScrollView];


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章