ПОСМОТРЕТЬ этот пример .... И реализовать это ..
UIImageView *imgViewCell = [[UIImageView alloc] initWithFrame:CGRectMake(0.0f, 46.0f, 320.0f, 116.0f)];
NSString *path = [[NSBundle mainBundle] pathForResource:@"detail_bg" ofType:@"png"];
UIImage *img = [[UIImage alloc] initWithContentsOfFile:path];
[imgViewCell setImage:img];
[ScroollView addSubview:imgViewCell];
[img release];