真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

代碼講解IOS鍵盤響應(yīng)和處理

本篇文章展示了IOS鍵盤響應(yīng)和處理的具體操作,代碼應(yīng)該是足夠清楚的,而且我也相信有相當(dāng)?shù)囊恍├涌赡苁俏覀內(nèi)粘9ぷ骺赡軙姷玫降?。通過這些問題,希望你能收獲更多。

創(chuàng)新互聯(lián)專注于成都網(wǎng)站設(shè)計、做網(wǎng)站、網(wǎng)頁設(shè)計、網(wǎng)站制作、網(wǎng)站開發(fā)。公司秉持“客戶至上,用心服務(wù)”的宗旨,從客戶的利益和觀點出發(fā),讓客戶在網(wǎng)絡(luò)營銷中找到自己的駐足之地。尊重和關(guān)懷每一位客戶,用嚴謹?shù)膽B(tài)度對待客戶,用專業(yè)的服務(wù)創(chuàng)造價值,成為客戶值得信賴的朋友,為客戶解除后顧之憂。

一個簡單的登錄功能,遇到最大的問題就是怎么處理彈出的鍵盤,如何讓它下去,這是一個首先要處理的問題。

 

ViewController.h:

#import   @interface DXWViewController : UIViewController  - (IBAction)OKClick:(id)sender; - (IBAction)cancleClick:(id)sender; @property (retain, nonatomic) IBOutlet UILabel *label; - (IBAction)end:(id)sender;//鍵盤退出方法 @property (retain, nonatomic) IBOutlet UITextField *name; @property (retain, nonatomic) IBOutlet UITextField *password;  @end


 
 

ViewController.m:

#import "DXWViewController.h"  @interface DXWViewController ()  @end  @implementation DXWViewController  - (void)viewDidLoad {     [super viewDidLoad];     //view一加載就讓輸入框成為第一響應(yīng)者     [self.name becomeFirstResponder]; }  - (void)didReceiveMemoryWarning {     [super didReceiveMemoryWarning]; }  - (IBAction)OKClick:(id)sender {     NSString *strName = self.name.text;     NSString *strPwd = self.password.text;     self.label.text = [NSString stringWithFormat:@"姓名:%@,密碼:%@",strName,strPwd];     //根據(jù)字的長度來設(shè)置label的大小,而不是用autolayerout來實現(xiàn)     CGSize size = [self.label.text sizeWithFont:self.label.font];     CGRect frame = CGRectMake(self.label.frame.origin.x,self.label.frame.origin.y, size.width, self.label.frame.size.height);     self.label.frame = frame; }  - (IBAction)cancleClick:(id)sender { } - (void)dealloc {     [_label release];     [_name release];     [_password release];     [super dealloc]; } - (IBAction)end:(id)sender {     [self.name resignFirstResponder];     [self.password resignFirstResponder]; } @end 

看完上訴內(nèi)容,你們掌握IOS鍵盤響應(yīng)和處理的方法了嗎?如果想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


新聞標(biāo)題:代碼講解IOS鍵盤響應(yīng)和處理
URL鏈接:http://weahome.cn/article/jdeoed.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部