Swift3: Live UiLabel update on user input

前端 未结 4 1398
面向向阳花
面向向阳花 2021-01-07 13:45

I\'ve searched everywhere and can\'t seem to find a clear answer on updating a label in real-time.

How do i go about updating a UILabel (real-time) with

4条回答
  •  北荒
    北荒 (楼主)
    2021-01-07 14:21

    option 1: Directly you can make action of textfield with value changed

    @IBAction func textFieldValueChange(_ sender: UITextField) {
            self.label.text = sender.text
        }
    

    option 2: Give Delegate to TextField

    func textField(textField: UITextField, shouldChangeCharactersInRange range: NSRange, replacementString string: String) -> Bool {
    
         label.text = textField.text 
         return true
     }
    

提交回复
热议问题