iPhone Auto-scroll UITextView but allow manual scrolling also

前端 未结 3 831
别跟我提以往
别跟我提以往 2020-12-16 05:58

I have a UITextView that has a lot of content. I have a button that allows the UITextView to automatically scroll + 10 pixels in an NSTimer loop:

scrollPoin         


        
3条回答
  •  情话喂你
    2020-12-16 06:47

    You could just make it move relative to where it is:

    scrollPoint = textView.contentOffset;
    scrollPoint.y= scrollPoint.y+10;
    [textView setContentOffset:scrollPoint animated:YES];
    

提交回复
热议问题