для просмотра изображения:
UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(5, 5, 100, 50)];
для текста:
UITextView *textView = [[UITextView alloc] initWithFrame:CGRectZero];
[textView setFrame:CGRectMake(X, Y, 320.0, 200)];
[textView setEditable:NO];
[self addSubview:imgView];
[self addSubview:textView];