Custom UITextField

前端 未结 6 1559
北海茫月
北海茫月 2020-12-08 05:08

How would I go about creating a UITextField like the one in this image?

\"enter

6条回答
  •  失恋的感觉
    2020-12-08 05:43

    You can do this by:

    yourTextField.borderStyle = UITextBorderStyleNone;
    
    yourTextField.background = [UIImage imageNamed:@"email-input.png"];
    

    And if you want to give margin to your text inside the textfield, you can do this by:

    // Setting Text Field Margins to display the user entered text Properly
    
    UIView *paddingView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 5, 20)];
    
    yourTextField.leftView = paddingView;
    yourTextField.leftViewMode = UITextFieldViewModeAlways;
    

提交回复
热议问题