anji k
anji k

Reputation: 1

how to set image view color as textfield background color

In my home page I added an image to the view and also added textfield over the imageview. I want to show the image color as textfield back ground color enter image description here

Upvotes: 0

Views: 67

Answers (2)

Nishant Bhindi
Nishant Bhindi

Reputation: 2252

set ClearColor of your textfield's background color in storyboard

Upvotes: 0

Daniel Kuta
Daniel Kuta

Reputation: 1634

Just call:

textField.backgroundColor = [UIColor clearColor];

Upvotes: 1

Related Questions