码迷,mamicode.com
首页 > 其他好文 > 详细

隐藏字

时间:2016-04-10 14:17:01      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

import Foundation
import UIKit

class register1CT: UIViewController,UITextViewDelegate{

var isEmpty:Bool?

override func viewDidLoad() {
super.viewDidLoad()
isEmpty=true
self.tx_Remark.delegate=self

}
@IBOutlet var quxiao:UIButton!
@IBOutlet var tx_Remark:UITextView!

@IBAction func OnBackup(sender:AnyObject){
self.dismissViewControllerAnimated(true, completion:{})
}

func textViewShouldBeginEditing(textView: UITextView) -> Bool {
if ((isEmpty) != nil){
self.tx_Remark.text = ""
self.tx_Remark.textColor=UIColor .blackColor()
isEmpty = false;
}
return true
}

}

隐藏字

标签:

原文地址:http://www.cnblogs.com/to-creat/p/5373996.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!