让UIScrollView固定只竖向滚动 | UIScrollView AutoLayout Vertical Only
For disabling the horizontal scroll, you can set the content size in the (void)scrollViewDidScroll method.
1 | [self.scrollView setContentOffset: CGPointMake(0, self.scrollView.contentOffset.y)]; |
You’l 继续>