项目介绍:
使用方法:
“`
-(LXKeyBoard *)keyboard{ if (!_keyboard) { _keyboard =[[LXKeyBoard alloc]initWithFrame:CGRectZero]; _keyboard.backgroundColor =[UIColor whiteColor]; _keyboard.maxLine = 4; LXWS(weakSelf); _keyboard.sendBlock = ^(NSString *text) { NSLog(@"%@",text); weakSelf.resultLabel.text = text; [weakSelf.resultLabel sizeThatFits:CGSizeMake(Device_Width – 40, MAXFLOAT)]; }; } return _keyboard;}
“`
简书地址:
https://www.jianshu.com/p/d5a5ce3760fa
github地址:https://github.com/liuxinixn/LXKeyBoardTextView