MTBaseTextField.m 654 B

123456789101112131415161718192021222324
  1. //
  2. // MTBaseTextField.m
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import "MTBaseTextField.h"
  8. @implementation MTBaseTextField
  9. //UITextField方法实现
  10. +(MTBaseTextField *)textFieldWithFrame:(CGRect)rect placeholder:(NSString *)placeholder secureTextEntry:(BOOL)bool1 textColor:(UIColor *)color1 backGroundColor:(UIColor *)color2 font:(UIFont *)font
  11. {
  12. MTBaseTextField *tf = [[MTBaseTextField alloc]init];
  13. tf.frame = rect;
  14. tf.backgroundColor = color2;
  15. tf.placeholder = placeholder;
  16. tf.secureTextEntry =bool1;
  17. tf.textColor = color1;
  18. tf.font = font;
  19. return tf;
  20. }
  21. @end