前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >ios textView跟随键盘的移动

ios textView跟随键盘的移动

作者头像
用户1219438
发布2018-02-01 15:54:57
1.7K0
发布2018-02-01 15:54:57
举报
文章被收录于专栏:AliceAlice

实现效果:

textview 能够跟随键盘的移动而移动

效果图如下:

下边贴上主要的代码:

1.创建textview

代码语言:javascript
复制
@interface ViewController ()<UITextViewDelegate>
@property(nonatomic,strong)UITextView *textView;
@end

2.

代码语言:javascript
复制
- (void)viewDidLoad {
    [super viewDidLoad];
    _textView = [[UITextView alloc]initWithFrame:CGRectMake(15,[UIScreen mainScreen].bounds.size.height-55 , [UIScreen mainScreen].bounds.size.width-30, 50)];
    _textView.delegate = self;
    _textView.backgroundColor = [UIColor redColor];
    [self.view addSubview:_textView];
    
    
    //设置两个通知
    [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(keyHiden:) name: UIKeyboardWillHideNotification object:nil];
    [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(keyWillAppear:) name:UIKeyboardWillChangeFrameNotification object:nil];
    
    
    
    
}

3.实现监听

代码语言:javascript
复制
#pragma mark-键盘出现隐藏事件
-(void)keyHiden:(NSNotification *)notification
{
    // self.tooBar.frame = rect;
    [UIView animateWithDuration:0.25 animations:^{
        //恢复原样
        _textView.transform = CGAffineTransformIdentity;
//        commentView.hidden = YES;
    }];
    
    
}
-(void)keyWillAppear:(NSNotification *)notification
{
    
    
    //获得通知中的info字典
    NSDictionary *userInfo = [notification userInfo];
    CGRect rect= [[userInfo objectForKey:@"UIKeyboardFrameEndUserInfoKey"]CGRectValue];
    // self.tooBar.frame = rect;
    [UIView animateWithDuration:0.25 animations:^{
        _textView.transform = CGAffineTransformMakeTranslation(0, -([UIScreen mainScreen].bounds.size.height-rect.origin.y));
    }];
    
    
}

如果想点击空白处收回键盘的话

代码语言:javascript
复制
//点击空白处收起键盘
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
    [_textView resignFirstResponder];
}

这样就可以实现图片中的效果了  

转载请注明出处  尊重劳动成果

想要demo的可以联系我邮箱   673658917@qq.com

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2017-03-16 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档