Created
December 9, 2011 06:00
-
-
Save huobazi/1450404 to your computer and use it in GitHub Desktop.
iOS 点击背景自动隐藏键盘
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
[self.fm_username hideKeyBoard:self.view];
[self.fm_password hideKeyBoard:self.view];
当使用两次以后,只有最后一次生效,前面的都是无效的.