I want to add a UITextView to another view (as shown below) and want it to be 15-20 degrees rotated.
How can it be done?

I want to add a UITextView to another view (as shown below) and want it to be 15-20 degrees rotated.
How can it be done?

You need to use transformation for that.
textView.transform = CGAffineTransformRotate(textView.transform, M_PI*45/180);
I am not really sure about the angle. I hope that helps.