Filling in a UITextField

Is it possible to install an add-on in a UITextField, if so, how?

+3
source share
1 answer

I was also interested, here you are:

UIView paddingView = new UIView(new CGRect(0, 0, 5, 20));
YourTextField.LeftView = paddingView;
YourTextField.LeftViewMode = UITextFieldViewMode.Always;

You can change the fill size by changing the values ​​above.

Hope this helps.

+3
source

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


All Articles