Saeed Rahmatolahi
Saeed Rahmatolahi

Reputation: 1338

Customize Text Field

Hi I want to build some thing that look like the picture !

Example Screen Shot my problem is that text field can't be two section and use tiny pictures in it just like a picture I want to make some thing just like the picture even the green part in the right of the each text field

here is what I want to do

Upvotes: 0

Views: 318

Answers (1)

Jogendra.Com
Jogendra.Com

Reputation: 6454

Make a custom view and add it as

textField.rightViewMode = .always
    // Set rightview mode
var rightImageView = UIImageView(image: UIImage(named: "image_icon"))
textField.rightView = rightImageView// Set right view as image view }

//textField Its your textfield object , Change it with your own

Try like this

Upvotes: 5

Related Questions