JXInputVC.h 688 B

12345678910111213141516171819202122232425
  1. //
  2. // JXInputVC.h
  3. // shiku_im
  4. //
  5. // Created by flyeagleTang on 15-2-4.
  6. // Copyright (c) 2015年 Reese. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface JXInputVC : UIViewController <UITextFieldDelegate>{
  10. UITextField* _value;
  11. JXInputVC* _pSelf;
  12. }
  13. @property (nonatomic,strong) NSString* inputTitle;
  14. @property (nonatomic, strong) UIFont *titleFont;
  15. @property (nonatomic, strong) UIColor *titleColor;
  16. @property (nonatomic,strong) NSString* inputHint;
  17. @property (nonatomic,strong) NSString* inputBtn;
  18. @property (nonatomic,strong) NSString* inputText;
  19. @property (nonatomic, weak) NSObject* delegate;
  20. @property (nonatomic, assign) SEL didTouch;
  21. @end