UITextView starts at Bottom or Middle of the text

后端 未结 19 1557
谎友^
谎友^ 2020-12-04 13:09

I\'ll get right to it. I have a UItextView placed in my view that when needs to scroll to see all the text (when a lot of text is present in the textView) the t

相关标签:
19条回答
  • 2020-12-04 13:38

    To force the textView to start at the top every time, use the following code:

    Swift 4.2:

    override func viewDidLayoutSubviews() {
        textView.setContentOffset(CGPoint(x: 0, y: 0), animated: false)
    }
    

    Objective-C:

    - (void)viewDidLayoutSubviews {
        [self.yourTextView setContentOffset:CGPointZero animated:NO];
    }
    
    0 讨论(0)
提交回复
热议问题