Ho domanda su TextFiled in rapidacome cancellare il campo di testo?
come posso testo in chiaro in TextFiled quando clicco su di esso
mia textfiled.text = "0"
voglio quando clicco su textfiled eliminare il "0" automatica
import UIKit
class ViewController: UIViewController, UITextFieldDelegate {
@IBOutlet var lbltext: UILabel!
@IBOutlet var scrolview1: UIScrollView!
@IBOutlet var fi: UITextField!
@IBOutlet var scrolviewus: UIScrollView!
@IBOutlet var counterLabel: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
fi.text = "0"
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
@IBAction func button(sender: AnyObject) {
lbltext.numberOfLines = 0
lbltext.text! = lbltext.text! + "\n" + fi.text! + "\n" + "--- "
}
}
possibilmente correlate: http://stackoverflow.com/questions/28530167/objective-c-auto-erase-nstextfield-string –
sto usando rapida –
Così che cosa, è lo stesso concetto. –