第12月第2天 uiscrollview _adjustContentOffsetIfNecessary

Posted lianhuaren

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第12月第2天 uiscrollview _adjustContentOffsetIfNecessary相关的知识,希望对你有一定的参考价值。

1.

uiscrollview在调用setFrame,setBounds等方法的时候会默认调用稀有api: _adjustContentOffsetIfNecessary

这个方法会改变当前的contentOffset值

 

如果没有设置 

self.automaticallyAdjustsScrollViewInsets = NO;

那么

(CGPoint) contentOffset = (x = 0, y = -20)

 

 

http://04rjgchyq.blog.163.com/blog/static/175937163201293044058562/

 

2.

 

单独禁止下拉

    if (_tableView.contentOffset.y < 0) {

        _tableView.contentOffset = CGPointMake(0, 0);

    }

 

http://www.jianshu.com/p/20697a712879

以上是关于第12月第2天 uiscrollview _adjustContentOffsetIfNecessary的主要内容,如果未能解决你的问题,请参考以下文章

第35月第18天 bmp对齐

第38月第8天 ios13 _placeholderLabel

第32月第12天 block stop

第20月第29天 cocoa抽象工厂

第17月第28天 python yield

第25月第6天 李宏毅 深度学习