Please sugest how to add a scrol开发者_如何学Pythonl to an image view iam writing some message using mouse and saving as image i need a scroll to write bix text in image view ..
Please download sample code from here
This will definitely help you.
SEE this Example....And implement this..
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];
精彩评论