财神随手记账

AlertWith1inputTextFieldView.h 695B

12345678910111213141516171819202122232425
  1. //
  2. // AlertWith1inputTextFieldView.h
  3. // FoolsparadiseView
  4. //
  5. // Created by foolsparadise on 19/9/2017.
  6. // Copyright © 2017 github.com/foolsparadise All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol AlertWith1inputTextFieldViewDelegate <NSObject>
  10. @optional
  11. - (void)AlertWith1inputTextFieldViewDelegate:(NSInteger)ClickedTag withInputString:(NSString *)InputString;
  12. @end
  13. @interface AlertWith1inputTextFieldView : UIView
  14. @property (nonatomic, strong) NSString *titleAlertString;
  15. @property (nonatomic, strong) NSString *leftShowString;
  16. @property (nonatomic, strong) NSString *rightButtonString;
  17. @property (nonatomic, weak) id <AlertWith1inputTextFieldViewDelegate> delegate;
  18. @end