background image to UITextView
good morning
i would like to add a background image to UITextView
i add a UIImage as a subview in UItextview the image appear but the text no,,
[matn setBackgroundColor:[UIColor clearColor]];
UIImageView *imgView = [[UIImageView alloc]initWithFrame: CGRectMake(0, 0, 340, 200)];
imgView.image = [UIImage imageNamed: @"text.png"];
[matn addSubview: imgView];
[imgView release];
matn is the name of the UItextView
thank you for your help
|