UITextField+RQExtension.h 305 B

12345678910111213141516
  1. //
  2. // UITextField+RQExtension.h
  3. // RQCommon
  4. //
  5. // Created by 张嵘 on 2018/11/23.
  6. // Copyright © 2018 张嵘. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <objc/runtime.h>
  10. @interface UITextField (RQExtension)
  11. /// 限制最大长度
  12. - (void)rq_limitMaxLength:(NSInteger)maxLength;
  13. @end