- //
- // UITextField+RQExtension.h
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/23.
- // Copyright © 2018 张嵘. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <objc/runtime.h>
- @interface UITextField (RQExtension)
- /// 限制最大长度
- - (void)rq_limitMaxLength:(NSInteger)maxLength;
- @end
|