I have a UITextView and it has a weird edge at the top, not sure what causes this. Here is the image, the background is orange:

Here is my corresponding code:
textViewTest = [[UITextView alloc] initWithFrame:CGRectMake(135, 0, 150, 68)];
[textViewTest setContentInset:UIEdgeInsetsZero];
[textViewTest setUserInteractionEnabled:NO];
[textViewTest setBackgroundColor:[UIColor orangeColor]];
[textViewTest setTextColor:[UIColor whiteColor]];
[textViewTest setText:@"Spooky (rename)\nCreated: 4/10/11\nUpload Youtube\nDelete | Favorite"];
What I want is text in a UITextView (textViewTest) so there is no space on top (margin). Currently, there, as 8-10 pixels from the top of the orange, the text begins.
source
share