I have a UIView which contains lot of labels, buttons, textviews. But there is a certain part of that UIView that I want to make scrollable.Here is how the structure of my nib is. -UIVIew -imageView - backgroundImage -Labels -Buttons -Textviews -UIScrollView -UITextview
Are touch events getting assigned to somewhere else? Here is a code of my scrollview which I have written in viewDidLoad.I only want the textview inside UIScrollview to be scrollable
scrollView.delegate = self;
[scrollView setCanCancelContentTouches:NO];
scrollView.indicatorStyle = UIScrollViewIndicatorStyleWhite;
scrollView.clipsToBounds = YES;
scrollView.scrollEnabled = YES;
scrollView.pagingEnabled = YES;
scrollView.autoresizesSubviews=YES;
[scrollView setContentMode:UIViewContentModeScaleAspectFit];
[scrollView addSubview:textview];
Am I mising something? is my approach right?
Thanks and regards