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];


你可能感兴趣的:(iOS)