Advertisement
olcayertas

HMXNewPersonelStep1ViewController.h

Oct 7th, 2013
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #import <UIKit/UIKit.h>
  2.  
  3. @interface HMXNewPersonelStep1ViewController : UIViewController
  4. @property (strong, nonatomic) IBOutlet UITextField *tfFirma;
  5. @property (strong, nonatomic) IBOutlet UITextField *tfTCKimlikNo;
  6. @property (strong, nonatomic) IBOutlet UITextField *tfAdSoyad;
  7. @property (strong, nonatomic) IBOutlet UITextField *tfGorev;
  8. @property (strong, nonatomic) IBOutlet UITextField *tfTelefon;
  9. @property (strong, nonatomic) IBOutlet UITextField *tfEposta;
  10. @property (strong, nonatomic) IBOutlet UITextField *tfSifre;
  11. @property (strong, nonatomic) IBOutlet UITextField *tfSifreTekrar;
  12. @property (strong, nonatomic) IBOutlet UIScrollView *scrollView;
  13. @property (strong, nonatomic) UITextField *activeField;
  14. @property (nonatomic) CGSize kbSize;
  15. @property (nonatomic) CGPoint oldContentOffset;
  16. @property (strong, nonatomic) UITapGestureRecognizer *gestureRecognizer;
  17.  
  18. - (IBAction)nextButtonClicked:(id)sender;
  19. - (IBAction)textFieldEditingDidBegin:(id)sender;
  20. - (IBAction)textFieldEditingDidEnd:(id)sender;
  21. - (IBAction)backButtonClicked:(id)sender;
  22. - (IBAction)backgroundClicked:(id)sender;
  23. - (void)handleSingleTap:(UITapGestureRecognizer*)sender;
  24. - (void)adjustView;
  25. - (void)keyboardWillHide:(NSNotification*)aNotification;
  26. - (void)keyboardDidShow:(NSNotification*)aNotification;
  27. - (void)registerForKeyboardNotifications;
  28.  
  29. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement