Scrolling of scrollView with TextView

147 Views Asked by At

I'm having scrollView contains one UIImageView on Top and UITextView with scrollingEnabled = NO , I want to scroll scrollView at the position where I type.

- (void)createScrollView{
//TPKeyboardAvoidingScrollView *scrollView = [[TPKeyboardAvoidingScrollView alloc]init];
UIScrollView *scrollView = [[UIScrollView alloc]init];
//[self.view insertSubview:scrollView belowSubview:_mediaSelectionView];
[self.view addSubview: scrollView];
[scrollView setTranslatesAutoresizingMaskIntoConstraints: NO];
self.scrollView = scrollView;
scrollView.showsHorizontalScrollIndicator = NO;
scrollView.showsVerticalScrollIndicator = NO;
scrollView.bouncesZoom = NO;
scrollView.alwaysBounceVertical = YES;
scrollView.clipsToBounds = YES;
self.automaticallyAdjustsScrollViewInsets = YES;
NSLayoutConstraint *scrollViewTop = [NSLayoutConstraint
                                     constraintWithItem: scrollView
                                     attribute: NSLayoutAttributeTop
                                     relatedBy: NSLayoutRelationEqual
                                     toItem: self.navigationBarBGView
                                     attribute: NSLayoutAttributeBottom
                                     multiplier: 1 constant:0.0
                                     ];
NSLayoutConstraint *scrollViewLeading = [NSLayoutConstraint
                                         constraintWithItem: scrollView
                                         attribute: NSLayoutAttributeLeading
                                         relatedBy: NSLayoutRelationEqual
                                         toItem: self.view
                                         attribute: NSLayoutAttributeLeading
                                         multiplier: 1 constant:0.0
                                         ];

NSLayoutConstraint *superViewTraling = [NSLayoutConstraint
                                        constraintWithItem: self.view
                                        attribute: NSLayoutAttributeTrailing
                                        relatedBy: NSLayoutRelationEqual
                                        toItem: scrollView
                                        attribute: NSLayoutAttributeTrailing
                                        multiplier: 1 constant:0.0
                                        ];

NSLayoutConstraint *bottomLayoutGuideTop = [NSLayoutConstraint
                                            constraintWithItem:self.view
                                            attribute: NSLayoutAttributeBottom
                                            relatedBy: NSLayoutRelationEqual
                                            toItem: scrollView
                                            attribute: NSLayoutAttributeBottom
                                            multiplier: 1 constant:0.0
                                            ];
//Add All Constrains.
[self.view addConstraints: @[scrollViewTop , scrollViewLeading , superViewTraling , bottomLayoutGuideTop ]];

_contentView = [[UIView alloc]init];

[scrollView addSubview: _contentView];
[_contentView setConstraintFlag];
[_contentView setFullWidth];
[_contentView setTopFromParent:0];

}

- (void)createCommentTextView{
    UITextView *textView = [[UITextView alloc]init];
    textView.backgroundColor = [UIColor clearColor];
    textView.textColor = [UIColor colorWithR:67 G:83 B:83 A:1.0f];
    textView.delegate = self;
    textView.scrollEnabled = NO;        
    _commentTextView = textView;
    [_textViewContainer addSubview:textView];

}

-(void)updateContentSize{
self.scrollView.contentSize = CGSizeMake(self.scrollView.contentSize.width, self.contentView.frame.size.height);

}

scrollView contains _contentView and contentView contains UITextView. textView height increases as user types and _contentView's bottom is equal to bottom of textView.

2

There are 2 best solutions below

1
On
0
On

I have gone through several posts and blogs, but I didn't get exact answer I want. After that, I came up with some sort of soln with the help of other posts and blogs. Hope this will help.

- (void)scrollToCursor{
    if(self.currentTextView.selectedRange.location != NSNotFound) {

    NSRange range = self.currentTextView.selectedRange;

    NSString *string = [<YOUR_TEXTVIEW>.text substringToIndex:range.location];

    CGSize size = [string boundingRectWithSize:<YOUR_TEXTVIEW>.frame.size
                                       options:NSStringDrawingUsesLineFragmentOrigin| NSStringDrawingUsesFontLeading
                                    attributes:@{NSFontAttributeName:<YOUR_TEXTVIEW>.font}
                                       context:nil].size;

    NSInteger yPosition = (<YOUR_TEXTVIEW>.frame.origin.y+size.height+<OFFSET(if required)>);


    NSInteger scrollViewVisibeYPositionStart = self.scrollView.contentOffset.y;
    NSInteger scrollViewVisibeYPositionEnd = scrollViewVisibeYPositionStart+self.scrollView.frame.size.height;

    BOOL needToSetOffset = NO;

    if (yPosition > scrollViewVisibeYPositionEnd) {
        yPosition = yPosition - self.scrollView.frame.size.height;
        needToSetOffset = YES;

    }else if (yPosition < scrollViewVisibeYPositionStart){
        yPosition = self.scrollView.frame.size.height + (scrollViewVisibeYPositionStart - yPosition);
        needToSetOffset = YES;
    }

    if (needToSetOffset) {
        CGPoint offset = CGPointMake(0,yPosition);
        [self.scrollView setContentOffset:offset];
  }
}
}