美文网首页
Safe Area textView自动滚动问题

Safe Area textView自动滚动问题

作者: 农村大地主 | 来源:发表于2018-05-03 14:08 被阅读0次

    Safe Area  textView自动滚动问题

    创建时候写

    if (@available(iOS 11.0, *)) {

            /*文本不随着安全区域变动*/

            _textView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;

        }

    - (void)viewDidAppear:(BOOL)animated

    {

        /*设置文本随着安全区域变动*/

        if (@available(iOS 11.0, *)) {

            _textView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentAutomatic;

            _textView.frame = _textView.safeAreaLayoutGuide.layoutFrame;

        }

    }

    这样在初始化的时候就不会滚动  视图滑动到底部时候又能将内容滚动到安全区以外

    相关文章

      网友评论

          本文标题:Safe Area textView自动滚动问题

          本文链接:https://www.haomeiwen.com/subject/zmwkrftx.html