Fixing dismissing keyboard

This commit is contained in:
Rodrigo Pedroso 2019-06-27 02:02:17 -04:00
commit d76e5aa177
2 changed files with 4 additions and 2 deletions

View file

@ -3,7 +3,7 @@
archiveVersion = 1; archiveVersion = 1;
classes = { classes = {
}; };
objectVersion = 50; objectVersion = 51;
objects = { objects = {
/* Begin PBXBuildFile section */ /* Begin PBXBuildFile section */
@ -153,7 +153,6 @@
CEC42CE36B871E51137612FE /* Pods-repo-browserTests.debug.xcconfig */, CEC42CE36B871E51137612FE /* Pods-repo-browserTests.debug.xcconfig */,
8DBD333E6EF8030384A2710E /* Pods-repo-browserTests.release.xcconfig */, 8DBD333E6EF8030384A2710E /* Pods-repo-browserTests.release.xcconfig */,
); );
name = Pods;
path = Pods; path = Pods;
sourceTree = "<group>"; sourceTree = "<group>";
}; };
@ -494,6 +493,7 @@
buildSettings = { buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = "repo-browser/Info.plist"; INFOPLIST_FILE = "repo-browser/Info.plist";
LD_RUNPATH_SEARCH_PATHS = ( LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)", "$(inherited)",
@ -512,6 +512,7 @@
buildSettings = { buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = "repo-browser/Info.plist"; INFOPLIST_FILE = "repo-browser/Info.plist";
LD_RUNPATH_SEARCH_PATHS = ( LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)", "$(inherited)",

View file

@ -96,6 +96,7 @@ class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSour
// MARK: - Action // MARK: - Action
@IBAction func loadRepo(_ sender: UIButton) { @IBAction func loadRepo(_ sender: UIButton) {
txfRepoOwner.resignFirstResponder()
self.getRepos() self.getRepos()
} }