私は持っていUITextViewます。テキストを上から開始したいのですが、上から来ていません。私のコードを見てください:  
UITextView *myTextView = [[UITextView alloc] init];
myTextView.frame = rect;
myTextView.editable = NO;
myTextView.font = [UIFont fontWithName:@"Helvetica" size:MAIN_FONT_SIZE];
myTextView.backgroundColor = [UIColor clearColor];
myTextView.text = sourceNode.label;
myTextView.dataDetectorTypes = UIDataDetectorTypeAll;
[cell.contentView addSubview:myTextView];
[myTextView sizeToFit];
[self alignTextToTopTextView:myTextView]; 
alignTextToTopTextView :
-(void)alignTextToTopTextView :(UITextView*)textView{
    CGRect frame = textView.frame;
    frame.size.height = textView.contentSize.height;
    textView.frame = frame;
} 
以下のスクリーンショットをご覧ください。
UITextView右側にあります。  
