1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
| //初始化UITextField控件 let textField = UITextField(frame: CGRect(x: 10, y: 200, width: 300, height: 40)) //为方便看到效果,设置一下背景色 textField.backgroundColor = UIColor.red //添加到视图上 self.view.addSubview(textField) //---------------------- 常用属性 //设置显示文本 textField.text = "bingo" //获取文本框内容 var textString = textField.text //设置背景色 textField.backgroundColor = UIColor.yellow //设置背景图 textField.background = UIImage(named: "testImage") //设置富文本 let attributeStr:NSMutableAttributedString=NSMutableAttributedString(string: "无限互联3G学院") //文本0开始5个字符字体HelveticaNeue-Bold,16号 attributeStr.addAttribute(NSFontAttributeName, value: UIFont(name: "HelveticaNeue-Bold", size: 16)!, range: NSMakeRange(0, 4)) //设置字体颜色 attributeStr.addAttribute(NSForegroundColorAttributeName, value: UIColor.red, range: NSMakeRange(4, 2)) //设置文字背景颜色 attributeStr.addAttribute(NSBackgroundColorAttributeName, value: UIColor.green, range: NSMakeRange(0, 4)) textField.attributedText = attributeStr //设置文本字体 textField.font = UIFont.systemFont(ofSize: 18);//使用系统默认字体,指定14号字号 textField.font = UIFont(name: "Helvetica-Bold", size: 18)//指定字体,指定字号 //设置文本颜色 textField.textColor = UIColor.magenta //设置文本字体对齐方式,对齐属性有以下几种,默认是左对齐 // Left : Visually left aligned // Center : Visually centered // Right : Visually right aligned // Justified : Fully-justified. The last line in a paragraph is natural-aligned. // Natural : Indicates the default alignment for script textField.textAlignment = .right //设置文本框样式,可分别看看效果 // None // Line // Bezel // RoundedRect textField.borderStyle = .bezel //富文本占位符 textField.attributedPlaceholder = attributeStr //设置占位字符 textField.placeholder = "请输入" //最小字体 textField.minimumFontSize = 10.0; //文本内容自动适应标签大小,默认是false textField.adjustsFontSizeToFitWidth = true //设置删除效果 // Never // WhileEditing // UnlessEditing // Always textField.clearButtonMode = .whileEditing //设置文本框编辑状态,默认true可以编辑 textField.isEditing = true textField.setValue(true, forKeyPath: "isEditing") //文本框是否可用,默认是true textField.isEnabled = true; //开始输入时,清空文本框原有内容 textField.clearsOnBeginEditing = true //允许编辑富文本 textField.allowsEditingTextAttributes = true //创建左视图 let leftView: UIView = UIView(frame: CGRect(x: 0, y: 0, width: 40, height: 40)) leftView.backgroundColor=UIColor.black textField.leftView=leftView; //设置左视图显示类型 // Never // WhileEditing // UnlessEditing // Always textField.leftViewMode = .whileEditing//开始编辑时显示 //创建右视图 let rightView: UIView = UIView(frame: CGRect(x: 260, y: 0, width: 40, height: 40)) rightView.backgroundColor=UIColor.black textField.rightView=rightView; //设置左视图显示类型 // Never // WhileEditing // UnlessEditing // Always textField.rightViewMode = .unlessEditing//开始编辑时显示 //成为第一响应者,光标定位到该文本框 textField.becomeFirstResponder() //取消光标,释放键盘 textField.resignFirstResponder() //---------------------- 文本框代理 textField.delegate = self
//---------------------- 键盘知识 //键盘外观 /* enum UIKeyboardAppearance : Int { case Default // Default apperance for the current input method. case Dark case Light } */ // textField.keyboardAppearance = .default //首字母是否大写 /* enum UITextAutocapitalizationType : Int { case None 不自动大写 case Words 单词首字母大写 case Sentences 句子的首字母大写 case AllCharacters 所有字母都大写 } */ textField.autocapitalizationType = .words //设置键盘完成的按钮样式 /* enum UIReturnKeyType : Int { case Default 默认灰色按钮,标有Return case Go 标有Go的蓝色按钮 case Google 标有Google的蓝色按钮,用语搜索 case Join 标有Join的蓝色按钮 case Next 标有Next的蓝色按钮 case Route 标有Route的蓝色按钮 case Search 标有Search的蓝色按钮 case Send 标有Send的蓝色按钮 case Yahoo 标有Yahoo的蓝色按钮 case Done 标有Yahoo的蓝色按钮 case EmergencyCall 紧急呼叫按钮 }*/ textField.returnKeyType = .yahoo
|