UITextView+RQExtension.h 325 B

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