温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

iOS解决TextField被键盘遮住的问题

发布时间:2020-06-18 15:02:25 来源:网络 阅读:888 作者:杜甲同学 栏目:移动开发


首先,我们在ViewController.h中

@interface ViewController : UIViewController<UITextFieldDelegate>


@property (strong, nonatomic) UIScrollView* scrollView;

@property (strong, nonatomic) UITextField* textField;

@end


之后在ViewController.m


@implementation ViewController


- (void)viewDidLoad

{

   [superviewDidLoad];


self.scrollView = [[UIScrollViewalloc] initWithFrame:CGRectMake(0, 0, 320, 600)];

   [self.viewaddSubview:self.scrollView];



self.textField = [[UITextFieldalloc] initWithFrame:CGRectMake(50, 400, 100, 30)];

self.textField.backgroundColor = [UIColorwhiteColor];

   [self.scrollViewaddSubview:self.textField];


   [[NSNotificationCenterdefaultCenter] addObserver:selfselector:@selector(textShowBegin:) name:UIKeyboardWillShowNotificationobject:nil];


   [[NSNotificationCenterdefaultCenter] addObserver:selfselector:@selector(keyBoardDidHidden) name:UIKeyboardWillHideNotificationobject:nil];


   [self.textFieldaddTarget:selfaction:@selector(textFieldResign) forControlEvents:UIControlEventEditingDidEndOnExit];



}

-(void)keyBoardDidHidden

{

self.scrollView.contentInset = UIEdgeInsetsZero;

}

-(void)textFieldResign

{

   [self.textFieldresignFirstResponder];

}




-(void)textFieldDidBeginEditing:(UITextField *)textField

{

self.textField = textField;

}

-(void)textShowBegin:(NSNotification*)aNotification

{

NSDictionary* info = aNotification.userInfo;

NSLog(@"%@",info);


CGSize kbSize = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;

UIEdgeInsets contentInsets = UIEdgeInsetsMake(0, 0, kbSize.height, 0);



self.scrollView.contentInset = contentInsets;

//获取整个视图的大小和位置

CGRect aRect = self.view.frame;


   aRect.size.height -= kbSize.height;

if (!CGRectContainsPoint(aRect, self.textField.frame.origin)) {


CGPoint scrollPoint = CGPointMake(0, self.textField.frame.origin.y - kbSize.height);

       [self.scrollViewsetContentOffset:scrollPoint animated:YES];


   }


}

下载地址 "TextFieldKB1119.zip"  http://vdisk.weibo.com/s/Et2R_



向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI