//
|
// UITextView+Expand.m
|
// airtree
|
//
|
// Created by WindShan on 2016/11/18.
|
// Copyright © 2016年 Gloria. All rights reserved.
|
//
|
|
#import "UITextView+Expand.h"
|
#import <objc/runtime.h>
|
@interface UITextView ()<UITextViewDelegate>
|
|
@property (nonatomic,strong) UILabel *wordCountLabel;//计算字数
|
@end
|
|
@implementation UITextView (Expand)
|
|
static NSString *PLACEHOLDLABEL = @"placelabel";
|
static NSString *PLACEHOLD = @"placehold";
|
static NSString *WORDCOUNTLABEL = @"wordcount";
|
static const void *limitLengthKey = &limitLengthKey;
|
|
|
#pragma mark -- set/get...
|
|
-(void)setPlaceholderLabel:(UILabel *)placeholderLabel {
|
|
objc_setAssociatedObject(self, &PLACEHOLDLABEL, placeholderLabel, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
|
}
|
|
- (UILabel *)placeholderLabel {
|
|
return objc_getAssociatedObject(self, &PLACEHOLDLABEL);
|
|
}
|
|
- (void)setPlaceholder:(NSString *)placeholder {
|
|
objc_setAssociatedObject(self, &PLACEHOLD, placeholder, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
|
[self setPlaceHolderLabel:placeholder];
|
}
|
|
- (NSString *)placeholder {
|
|
return objc_getAssociatedObject(self, &PLACEHOLD);
|
|
|
}
|
|
|
- (UILabel *)wordCountLabel {
|
|
return objc_getAssociatedObject(self, &WORDCOUNTLABEL);
|
|
}
|
- (void)setWordCountLabel:(UILabel *)wordCountLabel {
|
|
objc_setAssociatedObject(self, &WORDCOUNTLABEL, wordCountLabel, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
|
|
}
|
|
|
- (NSNumber *)limitLength {
|
|
return objc_getAssociatedObject(self, limitLengthKey);
|
}
|
|
- (void)setLimitLength:(NSNumber *)limitLength {
|
objc_setAssociatedObject(self, limitLengthKey, limitLength, OBJC_ASSOCIATION_COPY_NONATOMIC);
|
[self addLimitLengthObserver:[limitLength intValue]];
|
|
[self setWordcountLable:limitLength];
|
|
}
|
|
|
|
#pragma mark -- 配置占位符标签
|
|
- (void)setPlaceHolderLabel:(NSString *)placeholder {
|
|
/*
|
* 占位字符
|
*/
|
self.placeholderLabel = [[UILabel alloc] init];
|
self.placeholderLabel.font = [UIFont systemFontOfSize:13.];
|
self.placeholderLabel.text = placeholder;
|
self.placeholderLabel.numberOfLines = 0;
|
self.placeholderLabel.lineBreakMode = NSLineBreakByWordWrapping;
|
self.placeholderLabel.textColor = [UIColor lightGrayColor];
|
CGRect rect = [placeholder boundingRectWithSize:CGSizeMake(CGRectGetWidth(self.frame)-7, CGFLOAT_MAX) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName: [UIFont systemFontOfSize:13.]} context:nil];
|
self.placeholderLabel.frame = CGRectMake(7, 7, rect.size.width, rect.size.height);
|
self.delegate = self;
|
[self addSubview:self.placeholderLabel];
|
|
}
|
|
#pragma mark -- 配置字数限制标签
|
|
- (void)setWordcountLable:(NSNumber *)limitLength {
|
|
/*
|
* 字数限制 "0/120"格式
|
*/
|
self.wordCountLabel = [[UILabel alloc] initWithFrame:CGRectMake(CGRectGetWidth(self.frame) - 65, CGRectGetHeight(self.frame) - 20, 60, 20)];
|
self.wordCountLabel.textAlignment = NSTextAlignmentRight;
|
self.wordCountLabel.textColor = [UIColor lightGrayColor];
|
self.wordCountLabel.font = [UIFont systemFontOfSize:13.];
|
//"xxx/xxx"格式
|
//self.wordCountLabel.text = [NSString stringWithFormat:@"0/%@",limitLength];
|
//"xxx"格式
|
self.wordCountLabel.text = [NSString stringWithFormat:@"%@",limitLength];
|
self.delegate = self;
|
[self addSubview:self.wordCountLabel];
|
}
|
|
|
#pragma mark -- 增加限制位数的通知
|
- (void)addLimitLengthObserver:(int)length {
|
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(limitLengthEvent) name:UITextViewTextDidChangeNotification object:self];
|
}
|
|
#pragma mark -- 限制输入的位数
|
- (void)limitLengthEvent {
|
|
if ([self.text length] > [self.limitLength intValue]) {
|
|
self.text = [self.text substringToIndex:[self.limitLength intValue]];
|
}
|
}
|
|
|
#pragma mark -- TextViewDelegate
|
|
|
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text {
|
|
|
if (self.placeholder)
|
{
|
self.placeholderLabel.hidden = YES;
|
|
if (textView.text.length == 1 && text.length == 0) {
|
|
self.placeholderLabel.hidden = NO;
|
}
|
}
|
|
return YES;
|
}
|
|
- (void)textViewDidChange:(UITextView *)textView {
|
|
if (self.limitLength) {
|
|
NSInteger wordCount = textView.text.length;
|
if (wordCount > [self.limitLength integerValue]) {
|
wordCount = [self.limitLength integerValue];
|
}
|
|
//"xxx/xxx"格式
|
//self.wordCountLabel.text = [NSString stringWithFormat:@"%ld/%@",wordCount,self.limitLength];
|
//"xxx"格式
|
self.wordCountLabel.text = [NSString stringWithFormat:@"%ld", [self.limitLength integerValue]-wordCount];
|
|
}
|
|
}
|
@end
|