Large Text Being Cut Off in UITextView That is Inside UIScrollView

后端 未结 17 1674
挽巷
挽巷 2020-11-29 02:03

I\'m having a serious problem that I just can\'t seem to fix and it\'s driving me insane for the last two days. I have searched far and wide and I can\'t find a solution, e

17条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-29 02:57

    This issue has existed since iOS 7 and is still present in iOS 12.

    However, I wasn't able to keep the normal scrolling behaviour by setting scrollEnabled = NO before the resize, as @igz recommended. Instead I switched scrolling on and off after the resize

    // Resize text view here
    
    textView.scrollEnabled = NO;
    textView.scrollEnabled = YES;
    

    This forced the cut off text to render correctly.

提交回复
热议问题