// // JZNumberKeyBoard.h // JIZHANG // // Created by kuxuan on 2018/1/25. // Copyright © 2018年 kuxuan. All rights reserved. // #import @class JZNumberKeyBoard; @protocol JZNumberKeyBoardDelegate @optional - (void)numberKeyBoardDidEndEditing:(JZNumberKeyBoard *)board text:(NSString *)text; //点击完成 - (void)numberKeyBoardDidEditing:(JZNumberKeyBoard *)board text:(NSString *)text; @end @interface JZNumberKeyBoard : NSObject @property (nonatomic,strong)UIView *window; + (instancetype)sharedBoard; @property (nonatomic,weak)id delegate; - (void)clear; @property (nonatomic,copy)NSString *editString; @end