导航条与UIScrollView冲突解决方法
(1)在添加UIScrollView的ViewController中添加代码
self.edgesForExtendedLayout = UIRectEdgeNone;
(2)在添加UIScrollView的ViewController中添加代码
self.automaticallyAdjustsScrollViewInsets = YES;
(3)如果以上两种方法都不可以解决,使用下面方法:
在添加UIScrollView的ViewController中添加代码:
UIView *v = [[UIView alloc] init];
[self.view addSubview:v];
然后再正常添加UIScrollView即可