我想将背景图像设置为文本字段。图像太大,因此只有少部分图像在背景中。我需要解决方案,以便整个图像应在文本字段的背景中设置。我使用了以下代码,但效果不好.....
textField.background = UIImage(named: "textFeildBackground.png")!
我也尝试过以下代码..但它仍然无法满足需要。
let myImage = UIImage(named: "textFeildBackground.png")
let myImageView = UIImageView(frame: CGRect(x: 0, y: 0, width: self.textField.frame.width - 50 , height: self.textField.frame.height))
myImageView.backgroundColor = UIColor.redColor()
myImageView.contentMode = .ScaleAspectFill
myImageView.clipsToBounds = true
myImageView.image = myImage
textField.addSubview(myImageView)