ios uitextfield喜欢笔记

我希望我的uitextfield看起来像iPhone的笔记,黄色的线条。什么是最好的方式来做到这一点? 提前致谢!

你的意思是UItextview的权利? 它不是一个UITextField。 但是,在UITextView上清除你的背景。

self.textView.backgroundColor = [UIColor clearColor]; 

然后创buildImageView,你把它作为你的textview子视图。

 backgroundimage = [[UIImageView alloc] initWithFrame: CGRectMake(0, -14,textView.frame.size.width, textView.fram.size.height)]; 

设置一个模式图像为backgroundColor。 这将是你的线条。 只需创build一两行。 那么它应该重演。

 backgroundimage.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"lines.png"]; 

然后将你的子视图添加到textview。

 [self.textView addSubview:backgroundimage]; 

祝你好运!