Bounds automatically changes on UIScrollView with content insets

后端 未结 5 645
傲寒
傲寒 2020-12-28 22:54

I\'m using a UIScrollView as my paging scroll view, pagesScrollView. Inside that, I put individual UIScrollViews which are used exclusively for zooming. Inside

5条回答
  •  执念已碎
    2020-12-28 23:34

    I have checked you example use below code in viewController.m file

    -(void)viewDidLoad
    {
        if ([[UIDevice currentDevice] systemVersion].floatValue>=7.0) {
            self.edgesForExtendedLayout = UIRectEdgeNone;
        }
    }
    

    It's working fine...

提交回复
热议问题