List of UITextField? How to achieve a similar interface?

I came across this interface in a Geico application. How is this “grouped” UITextField style achieved (street, city, state)? Is this just an explicit restyling of the 3 UITextField elements, or is there a control that I'm missing to handle this?

enter image description here

Note. I am using MonoTouch.

+3
source share
2 answers

I think this is done using the UITableView element.

+2
source

- , UIView view.clipsToBounds YES, view.layer.borderColor , view.layer.borderWidth view.layer.cornerRadius . #import <QuartzCore/QuartzCore.h> .

+2

Source: https://habr.com/ru/post/1796704/


All Articles