Padding in UITextField

前端 未结 1 921
北恋
北恋 2021-01-20 03:20

Is it possible to set padding inside a UITextField, if so how?

相关标签:
1条回答
  • 2021-01-20 04:00

    I was also wondering, here you are:

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

    You can modify padding size of course by changing values above.

    Hope this will help.

    0 讨论(0)
提交回复
热议问题