UIScrollView wrong offset with Auto Layout

前端 未结 7 981
逝去的感伤
逝去的感伤 2020-12-12 22:19

I have a fairly simple view configuration:

A UIViewController, with a child UIScrollView and a UIImageView in this UIScr

7条回答
  •  再見小時候
    2020-12-12 22:57

    Simple solution found, Just put

    [self setAutomaticallyAdjustsScrollViewInsets:NO];
    

    in your ViewControllers viewDidLoad method

    - (void)viewDidLoad {
        [super viewDidLoad];
        // Do any additional setup after loading the view from its nib.
    
        [self setAutomaticallyAdjustsScrollViewInsets:NO];
    }
    

提交回复
热议问题