hide keyboard
The best answer I found was the following: [crayon-6792c81a75e4a424179623/] and then create the IBOutlet for your text field like this [crayon-6792c81a75e501760...
The best answer I found was the following: [crayon-6792c81a75e4a424179623/] and then create the IBOutlet for your text field like this [crayon-6792c81a75e501760...
You can just use: [crayon-6792c81a76ea1081693372/] in the button ACTION But this way it works only since the second interraction. It is better to do the same th...
Just [crayon-6792c81a7711c359372377/] in viewDidLoad set the title..
In every app it’s very good to know if the user launch it first time or not. This code can solve the problem. [crayon-6792c81a77380175422706/] O.. in View...
I ran into a minor problem: during segue transition a dark shadow appeared for about a second on navigaition bar. It was not a fatal problem but really annoying...
It was a big yesterday’s problem, that I could not move to third viewController so I could not even create a menu using tableView. The problem was in the ...
This is presented as the easest way to make tableView import UIKit class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource { // Data ...
In order to make text of button fit the width of the button I can use the following code: [crayon-6792c81a778eb202109007/] This code allows us to perfom our p...
To start text from the very beginning and not from the middle (as it turns out the default) I found the following code: [crayon-6792c81a77d34162514028/] Solutio...