Skip to content

Commit

Permalink
Set room text field to lower case by default (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
idelgado authored Aug 29, 2017
1 parent 0fdf1ee commit e7e1e0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions VideoCallKitQuickStart/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ class ViewController: UIViewController {
self.disconnectButton.isHidden = true
self.micButton.isHidden = true

self.roomTextField.autocapitalizationType = .none
self.roomTextField.delegate = self

let tap = UITapGestureRecognizer(target: self, action: #selector(ViewController.dismissKeyboard))
Expand Down
1 change: 1 addition & 0 deletions VideoQuickStart/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ class ViewController: UIViewController {
self.disconnectButton.isHidden = true
self.micButton.isHidden = true

self.roomTextField.autocapitalizationType = .none
self.roomTextField.delegate = self

let tap = UITapGestureRecognizer(target: self, action: #selector(ViewController.dismissKeyboard))
Expand Down

0 comments on commit e7e1e0c

Please sign in to comment.