当在- (void)scrollViewDidScroll:(UIScrollView *)scrollView
打印NSLog(@"%.f", scrollView.contentOffset.y);
时,发现数值为-20,说明self.view
Y值没有以顶点开始,而是在状态栏之下。
- 解决方案:
在当前VC的- (void)viewDidLoad
添加如下一行代码
self.edgesForExtendedLayout = UIRectEdgeNone;
当在- (void)scrollViewDidScroll:(UIScrollView *)scrollView
打印NSLog(@"%.f", scrollView.contentOffset.y);
时,发现数值为-20,说明self.view
Y值没有以顶点开始,而是在状态栏之下。
- (void)viewDidLoad
添加如下一行代码self.edgesForExtendedLayout = UIRectEdgeNone;
本文标题:iOS VC添加TableView/CollectionView
本文链接:https://www.haomeiwen.com/subject/eezwnttx.html
网友评论