我希望我的 uitextfield 看起来像 iPhone 的笔记,黄色的线条......
最好的方法是什么?
提前致谢!
Best Answer-推荐答案 strong>
你的意思是 UItextview 对吧? ...它不是 UITextField。
但是,请清除 UITextView 上的背景。
self.textView.backgroundColor = [UIColor clearColor];
然后创建您将作为 subview 放入 TextView 的 ImageView。
backgroundimage = [[UIImageView alloc] initWithFrame: CGRectMake(0, -14,textView.frame.size.width, textView.fram.size.height)];
将图案图像设置为背景颜色。这将是你的台词。只需创建或两行。然后它应该重复自己。
backgroundimage.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed"lines.png"];
然后将您的 subview 添加到 TextView 。
[self.textView addSubview:backgroundimage];
祝你好运!
关于iphone - ios uitextfield 喜欢笔记,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/5098682/
|