// // AmountInputAlertView.h // Tsn // // Created by 翟玉磊 on 2019/3/14. // Copyright © 2019 翟玉磊. All rights reserved. // #import "YLBaseAlertView.h" NS_ASSUME_NONNULL_BEGIN /// index按钮索引 1是取消 2是确认 typedef void(^AmountInputAlertViewClickIndex)(NSInteger index, NSString *amount); @interface AmountInputAlertView : YLBaseAlertView @property (nonatomic,copy) AmountInputAlertViewClickIndex clickIndex; - (instancetype)initWithTitle:(nullable NSString *)title message:(nullable NSString *)message placeholder:(NSString *)placeholder keyboardType:(UIKeyboardType)keyboardType sureBtn:(NSString *)sureTitle cancleBtn:(NSString *)cancleTitle; @end NS_ASSUME_NONNULL_END