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

View file

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