iOSview整體上移下移(點擊鍵盤)

來源:互聯網
上載者:User

標籤:

首先建立一個textFiled 並實現起代理方法

 1 - (void)textFieldDidBeginEditing:(UITextField *)textField 2 { 3     //設定動畫的名字 4     [UIView beginAnimations:@"Animation" context:nil]; 5     //設定動畫的間隔時間 6     [UIView setAnimationDuration:0.20]; 7     //??使用當前正在啟動並執行狀態開始下一段動畫 8     [UIView setAnimationBeginsFromCurrentState: YES]; 9     //設定視圖移動的位移10     self.view.frame = CGRectMake(self.view.frame.origin.x, self.view.frame.origin.y - 200, self.view.frame.size.width, self.view.frame.size.height);11     //設定動畫結束12     [UIView commitAnimations];13 }14 - (void)textFieldDidEndEditing:(UITextField *)textField15 {16     //設定動畫的名字17     [UIView beginAnimations:@"Animation" context:nil];18     //設定動畫的間隔時間19     [UIView setAnimationDuration:0.20];20     //??使用當前正在啟動並執行狀態開始下一段動畫21     [UIView setAnimationBeginsFromCurrentState: YES];22     //設定視圖移動的位移23     self.view.frame = CGRectMake(self.view.frame.origin.x, self.view.frame.origin.y +200, self.view.frame.size.width, self.view.frame.size.height);24     //設定動畫結束25     [UIView commitAnimations];26 }27 - (BOOL)textFieldShouldReturn:(UITextField *)textField28 {29     [_text resignFirstResponder];30     return YES;31 }

 

iOSview整體上移下移(點擊鍵盤)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.