开发者

how to add scroll to an image view

开发者 https://www.devze.com 2023-03-06 16:04 出处:网络
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

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];
0

精彩评论

暂无评论...
验证码 换一张
取 消