I also ran into the same problem and I decided to take it with an IBOutlet UITextView and set the value in code like this
UITextView *txtView=[[UITextView alloc] initWithFrame:CGRectMake(50, 50, 200, 200)]; [txtView setText:@"Your long text"]; [txtView setEditable:NO]; [self.view addSubview:txtView]; [txtView release];
Another option can be taken by webview and upload your content to webview.
Dhara source share