在开发的时候我们经常会使用到UITextField和UITextView,这两者很像,但是UITextView没有placeholder属性,当然你可以自定义一个UITextView或者给UITextView写一个扩展,这里我介绍一个简单的方法做一个伪placeholder。
我这里写了两个UITextView并且设置了初始text
遵循UITextViewDelegate协议实现协议方法,在里面判断就ok了
func textViewDidBeginEditing(textView: UITextView) {
//开始编辑
if textView == self.questionTitleTextView {
if textView.text == "你的问题(5到49字以内)" {
textView.text = ""
textView.textColor = UIColor.blackColor()
}
}
if textView == self.questionDetalTextView {
if textView.text == "问题详细描述(1000字以内)" {
textView.text = ""
textView.textColor = UIColor.blackColor()
}
}
}
func textViewDidEndEditing(textView: UITextView) {
//结束编辑
if textView == self.questionTitleTextView {
if textView.text == ""{
textView.text = "你的问题(5到49字以内)"
textView.textColor = UIColor(red: 0.64, green: 0.64, blue: 0.64, alpha: 1)
}
}
if textView == self.questionDetalTextView {
if textView.text == ""{
textView.text = "问题详细描述(1000字以内)"
textView.textColor = UIColor(red: 0.64, green: 0.64, blue: 0.64, alpha: 1)
}
}
}
键盘Return键监听在UITextView的代理里面是没有对应方法的,这里可以用另一个方法判断
func textView(textView: UITextView, shouldChangeTextInRange range: NSRange, replacementText text: String) -> Bool {
if text.containsString("\n") {
self.view.endEditing(true)
return false
}
return true
}
网友评论