private void prepareTextView() { TextView.TextContainerInset = UIEdgeInsets.Zero; TextView.TextContainer.LineFragmentPadding = 0; var text = new NSMutableAttributedString(Resources.TermsOfServiceDialogMessage, normalTextAttributes); text.AddAttributes(highlitedTextAttributes, termsOfServiceTextRange); text.AddAttributes(highlitedTextAttributes, privacyPolicyRange); TextView.AttributedText = text; TextView.AddGestureRecognizer(new UITapGestureRecognizer(onTextViewTapped)); }