It might be a silly question. I\'m trying to set left/right margins like the attached picture. I succeeded to implement it by adding UITextView to UIScrollView. However, I c
UIEdgeInsets insets = textView.scrollIndicatorInsets; insets.right += 5; //add what ever is your margain textView.scrollIndicatorInsets = insets;