I m working on note app. In which i m creating view like iPhone notes.
First i took a scroll view and then one image view. After that I m creating a UITextView dynamically... I set the background image of UITextView..
using this code
textView = [[UITextView alloc]initWithFrame:CGRectMake(0,30,320,400)];
textView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed: @"lines.png"]];
Its working perfect in simulator. but when i run my app on device then UITextView's background doesn't display... means it doesn't display lines...
My image size is 365x45...
Can anybody help me why this happen???? Where is the problem???
thanks!!
