码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 当键盘覆盖textFiled时简单的处理方法

时间:2014-08-01 13:11:11      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:os   io   size   ios   file   ui   text   rom   

 

//方法1---

- (void)textFieldDidBeginEditing:(UITextField *)textField {

    

    if (iPhone5) {

        return;

    }

    else

    {

        [UIView beginAnimations:nil context:NULL];

        [UIView setAnimationDuration:0.3];

        [UIView setAnimationDelegate:self];

        

        //设定动画开始时的状态为目前画面上的样子

        [UIView setAnimationBeginsFromCurrentState:YES];

        

        self.view.frame = CGRectMake(self.view.frame.origin.x,

                                     self.view.frame.origin.y - 70,

                                     self.view.frame.size.width,

                                     self.view.frame.size.height);

        

        [UIView commitAnimations];

    }

}

 

//方法2---scrollView

-(void)textViewDidBeginEditing:(UITextView *)textView

{

    if (iPhone5)

    {

        //改变当前的滚动位置

        [self.myScroll setContentOffset:CGPointMake(0,phoneNumberTextFiled.frame.origin.y-190) animated:YES];

    }

    else

    {

        //改变当前的滚动位置

        [self.myScroll setContentOffset:CGPointMake(0,phoneNumberTextFiled.frame.origin.y-100) animated:YES];

    }

 

}

iOS 当键盘覆盖textFiled时简单的处理方法,布布扣,bubuko.com

iOS 当键盘覆盖textFiled时简单的处理方法

标签:os   io   size   ios   file   ui   text   rom   

原文地址:http://www.cnblogs.com/Ewenblog/p/3884572.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!