Skip to content

Instantly share code, notes, and snippets.

@johnnyclem
Created June 12, 2014 19:03
Show Gist options
  • Save johnnyclem/20f676f0c580de007efa to your computer and use it in GitHub Desktop.
Save johnnyclem/20f676f0c580de007efa to your computer and use it in GitHub Desktop.
let notificationCenter = NSNotificationCenter.defaultCenter()
notificationCenter.addObserver(
self,
selector: "textFieldTextChanged:",
name:UITextFieldTextDidChangeNotification,
object: nil
)
func textFieldTextChanged(sender : AnyObject) {
sendButton.enabled = messageField.text.utf16count > 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment