Need some help figuring out how to add some text (UITextView?) to a UITableView detail view. The screenshot shows a vacant white space where I need to add the UITextView.
Here is a screenshot of what I have:

Here is the method where I am assigning the UITableView detail title value.
//MainViewControler.m
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UIViewController *detailsViewController = [[UIViewController alloc] init];
// get detail view controller "title" value
detailsViewController.title = word.term;
[[self navigationController] pushViewController:detailsViewController animated:YES];
[detailsViewController release];
}
Thanks!
After you create detailsViewController object, add the following code: