swift-UITextfield控制項的基本屬性設定,uitextfield屬性

來源:互聯網
上載者:User

swift-UITextfield控制項的基本屬性設定,uitextfield屬性

 

//1.初始化UITextField

    let userName=UITextField(frame: CGRectMake(0, 100, 100, 100));

 

 //2.將文字框userName添加到當前視圖中

   self.view.addSubview(userName);

 

//3.文字框預設顯示文字

  userName.placeholder="請輸入手機號";

 

//4.設定字型大小

  userName.font=UIFont.systemFontOfSize(16);

 

//5.當編輯時文字框右側出現刪除小表徵圖,登陸介面經常會用到

  userName.clearButtonMode=UITextFieldViewMode.WhileEditing;

 

//6.如果需要設定文字框邊框顏色,需要同時設定顏色及邊框大小,否則會沒有邊框效果 

   userName.layer.borderColor=UIColor.blackColor();

   userName.layer.borderWidth=1;

 

//7.設定文字框圓角

userName.layer.cornerRadius=5;

 

//8.有時候文字框左視圖需要添加圖片

//8.1添加使用者名稱左視圖

        let NameLeftView:UIView=UIView(frame: CGRectMake(0, 0, 40, 60));

        let namePic:UIImageView=UIImageView(frame: CGRectMake(5,20, 20, 20));

        namePic.image=UIImage(named: "iconfont-phone.png");

        NameLeftView.addSubview(namePic);

        userName.leftView=NameLeftView;

   //下面這句代碼是指圖片何時顯示

        userName.leftViewMode=UITextFieldViewMode.Always;

//9.文字框內字元以* 顯示

  userName.secureTextEntry=true;

//10.邊框圓角

  userName.borderStyle = UITextBorderStyleRoundedRect;

//11.設定鍵盤的樣式   userName.keyboardType = UIKeyboardTypeNumberPad;(數字鍵台)//12.設定UITextField的代理  userName.delegate=self; //這是我的項目登陸介面  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.