uitextfield可以進行文字輸入, 可以用到的地方有很多, 比如登陸介面, 或者申請註冊介面
@inte***ce
@end
@implementation
- (void)dealloc
self
.window = [[[uiwindow alloc] initwithframe:[[uiscreen mainscreen] bounds]] autorelease];
self
.window
.backgroundcolor = [uicolor whitecolor];
// 建立乙個uitextfield
uitextfield *textfield = [[uitextfield alloc] initwithframe:cgrectmake(100, 100, 200, 50)];
// 設定背景顏色
textfield.backgroundcolor = [uicolor greencolor];
// 設定佔位符(輸入框內直接顯示出來的文字 如:輸入密碼框中有"請輸入密碼提示")
textfield.placeholder = @"請輸入密碼";
// 設定顏色和大小
textfield.textcolor = [uicolor blackcolor];
textfield.font = [uifont systemfontofsize:20];
// 對齊方法(預設是左對齊)
textfield.textalignment = nstextalignmentcenter;
// 是否可以輸入 預設是yes 等於no的時候不能輸入
textfield.enabled = yes;
// 輸入時變成圓點,密碼模式 原點顏色是跟文字顏色一樣一樣的
textfield.securetextentry = yes;
// 邊框設定
textfield.borderstyle = uitextborderstyleroundedrect;
// 顯示textfield
[self
.window addsubview:textfield];
[textfield release];
[self
.window makekeyandvisible];
return
yes;
}
ios新手入門之UITextField左邊空格
uitextfield輸入開始時,左邊回空出一小段距離,看起來比較好 uilabel leftview uilabel alloc initwithframe cgrectmake 15,0,7,26 leftview.backgroundcolor uicolor clearcolor self....
git之新手入門使用
git init 將本地資料夾初始化成乙個本地的倉庫 git status 命令檢視當前倉庫檔案的狀態 git add readme.txt 命令把readme.txt檔案加入到暫存區 git commit m 第一次提交readme.txt 把readme.txt從暫存區提交到版本庫 git di...
Python新手入門之函式
函式的定義 函式就是執行特定的任務和特定功能的一段 函式的作用 復用 隱藏實現細節 提高可維護性 提高可讀性便於除錯 函式的建立 def 函式名 輸入引數 函式體 return 函式的引數傳遞 def sun a,b print a a print b b return a b print sun ...