The end goal is to display a table view controller made up of a model and some properties. The model is an array of list, where the list are the properties. An add bar button item takes user to another view controller with several text fields. The text fields correlate with the properties in array’s list.
The problem is I can not add the textfield input to the table view controller.
Outlets are connected. Segues are working. Data is being accepted. Just not transferring to Country array.
Aforementioned Tableviewcontroller:
public var countries: [Country] = [
Country(flag: "πΊπΈ", name: "United States of America", region: "North America", population: "328.2m"),
Country(flag: "πͺπΉ", name: "Ethiopia", region: "Horn of Africa", population: "105m"),
Country(flag: "π¬π·", name: "Greece", region: "South Eastern Europe", population: "10.77m"),
Country(flag: "π°π¬", name: "Kyrgystan", region: "Central", population: "6.2m"),
Country(flag: "π»π¦", name: "Vatican City", region: "Europe", population: "1000"),
Country(flag: "π―π΅", name: "Japan", region: "Northwestern Ring of Fire", population: "126.3m"),
Country(flag: "πΈπΈ", name: "South Sudan", region: "North Africa", population: "11.6m")]
My attempt to transfer data in addviewcontroller:
@IBAction func submitCountryTapped(_ sender: Any) {
newCountry = (Country(flag: "(flagTextfield!.text!)", name: "(nameTextfield!.text!)", region: "(regionTextfield!.text!)", population: "(popTextfield!.text!)"))
countries.append(newCountry)
print("(flagTextfield!.text!) (nameTextfield!.text!) has been added")
}
2
Answers
if countries is the dataSource of the table this should help
Congratulations.
Every ! Is a potential crash. I count 10 or so. Download Appleβs Swift book, learn how to use βif letβ. Your users will thank you.
The way you use string interpolation is horrendous. Safe:
Take the opportunity to learn about the guard statement.