How would I go about creating a UITextField
like the one in this image?
You probably want to use the background
and borderStyle
properties of UITextField
. Setting borderStyle
as UITextBorderStyleNone
and create a custom background image to be stretched and used as the background
property would be one approach.
I suggest taking a look at those properties in the UITextField class reference.