-
-
Save syxc/5002452 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <UIKit/UIKit.h> | |
@interface UITextField (HideKeyBoard) | |
-(void)hideKeyBoard:(UIView *)view; | |
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "UITextField+HideKeyBoard.h" | |
@implementation UITextField (HideKeyBoard) | |
- (void) hideKeyBoard:(UIView*)view{ | |
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] | |
initWithTarget:self | |
action:@selector(doHideKeyBoard)]; | |
tap.numberOfTapsRequired = 1; | |
[view addGestureRecognizer: tap]; | |
[tap setCancelsTouchesInView:NO]; | |
[tap release]; | |
} | |
- (void)doHideKeyBoard{ | |
[self resignFirstResponder]; | |
} | |
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)viewDidLoad | |
{ | |
[super viewDidLoad]; | |
// Do any additional setup after loading the view from its nib. | |
[self.txtValue hideKeyBoard:self.view]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment