Hello Swift!: iOS app programming for kids and other beginners by Tanmay Bakshi

Hello Swift!: iOS app programming for kids and other beginners by Tanmay Bakshi

Author:Tanmay Bakshi
Language: eng
Format: mobi, epub
Publisher: Manning Publications
Published: 2019-05-10T20:00:19.473000+00:00


Set up the app, and create the UI

Give the app a UI like the one in figure 7.5.

Figure 7.5. The Friend List UI

Code the app

Next, modify the code to look like the following listing.

Listing 7.2. The Friend List code

class ViewController: UIViewController {

var persons: [String: String] = [:] 1

@IBOutlet var personName: UITextField!

@IBOutlet var personInfo: UITextField!

@IBOutlet var personList: UITextView!

override func viewDidLoad() {

super.viewDidLoad()

// Do any additional setup after loading the view,

typically from a nib.

}



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.