Why is UIScrollView leaving space on top and does not scroll to the bottom

后端 未结 13 2759
眼角桃花
眼角桃花 2020-12-01 09:15

I am new to objective-C programming.

I am using UIScrollView with some labels, image and text view on it.

I have turned off Autolayout and already tried wit

13条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-01 09:54

    Swift 3.0

    self.automaticallyAdjustsScrollViewInsets = false
    
    scrollView.contentInset = UIEdgeInsets.zero
    
    scrollView.scrollIndicatorInsets = UIEdgeInsets.zero;     
    

提交回复
热议问题