Implement a TableView with Sections and populating it with data from a struct
up vote
0
down vote
favorite
I'm mostly new to iOS and Xcode dev, so I'm just here asking for some handholding for now...
I'm making an app with a TableView of medical symptoms. I've managed to populate the tableview with data from an array and separate that into sections depending medical specialty. However, I've run into a brick wall with regards to being able to checkmark multiple symptoms in the table, and save that for later use in another ViewController.
The easiest method for me to understand is to create a dictionary with the whole list of symptoms, and then assign a boolean value to each of the symptoms depending on whether it is checked or unchecked. But I have no idea how to implement a struct that houses all the data, as well as being able to separate it into sections.
I'm also wondering whether it would be better to just keep all the data in an external file and allow the app to access the data.
I can add the code I've written so far if needed.
Help would be much appreciated!
Below is my current implementation of the data source
let SymptomsSections = ["General", "Respiratory", "Cardiac", "Abdominal", "Neurological", "Psychiatrical"]
let SymptomsList =
[
["Dry mouth", "Malaise", "Asthenia"],
["Dyspnoea", "Wheezing"],
["Orthopnoea", "Angina"],
["Coffee ground vomiting", "Melaena"],
["Agnosia", "Apraxia"]
]
and the code to write it in tableView
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String?
{
return self.SymptomsSections[section]
}
override func numberOfSections(in tableView: UITableView) -> Int
{
return self.SymptomsSections.count
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
return SymptomsList[section].count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
let cell = tableView.dequeueReusableCell(withIdentifier: "SymptomsCell", for: indexPath)
cell.textLabel?.text = SymptomsList[indexPath.section][indexPath.row]
return cell
}
arrays swift xcode struct tableview
add a comment |
up vote
0
down vote
favorite
I'm mostly new to iOS and Xcode dev, so I'm just here asking for some handholding for now...
I'm making an app with a TableView of medical symptoms. I've managed to populate the tableview with data from an array and separate that into sections depending medical specialty. However, I've run into a brick wall with regards to being able to checkmark multiple symptoms in the table, and save that for later use in another ViewController.
The easiest method for me to understand is to create a dictionary with the whole list of symptoms, and then assign a boolean value to each of the symptoms depending on whether it is checked or unchecked. But I have no idea how to implement a struct that houses all the data, as well as being able to separate it into sections.
I'm also wondering whether it would be better to just keep all the data in an external file and allow the app to access the data.
I can add the code I've written so far if needed.
Help would be much appreciated!
Below is my current implementation of the data source
let SymptomsSections = ["General", "Respiratory", "Cardiac", "Abdominal", "Neurological", "Psychiatrical"]
let SymptomsList =
[
["Dry mouth", "Malaise", "Asthenia"],
["Dyspnoea", "Wheezing"],
["Orthopnoea", "Angina"],
["Coffee ground vomiting", "Melaena"],
["Agnosia", "Apraxia"]
]
and the code to write it in tableView
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String?
{
return self.SymptomsSections[section]
}
override func numberOfSections(in tableView: UITableView) -> Int
{
return self.SymptomsSections.count
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
return SymptomsList[section].count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
let cell = tableView.dequeueReusableCell(withIdentifier: "SymptomsCell", for: indexPath)
cell.textLabel?.text = SymptomsList[indexPath.section][indexPath.row]
return cell
}
arrays swift xcode struct tableview
do you need to save those data locally ? to show each time the apps start ? or create them each time you open the application ?
– Tobi
Nov 14 at 8:24
I want the data stored locally, and the list will remain constant, and show when the app starts
– Jeremy Hao-Yang Choi
Nov 14 at 8:28
you know storing data locally is a big topic, i recommend you to first create each time user open the application then after you have the ability to do them by your self you can jump to the next step and store them.
– Tobi
Nov 14 at 8:29
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm mostly new to iOS and Xcode dev, so I'm just here asking for some handholding for now...
I'm making an app with a TableView of medical symptoms. I've managed to populate the tableview with data from an array and separate that into sections depending medical specialty. However, I've run into a brick wall with regards to being able to checkmark multiple symptoms in the table, and save that for later use in another ViewController.
The easiest method for me to understand is to create a dictionary with the whole list of symptoms, and then assign a boolean value to each of the symptoms depending on whether it is checked or unchecked. But I have no idea how to implement a struct that houses all the data, as well as being able to separate it into sections.
I'm also wondering whether it would be better to just keep all the data in an external file and allow the app to access the data.
I can add the code I've written so far if needed.
Help would be much appreciated!
Below is my current implementation of the data source
let SymptomsSections = ["General", "Respiratory", "Cardiac", "Abdominal", "Neurological", "Psychiatrical"]
let SymptomsList =
[
["Dry mouth", "Malaise", "Asthenia"],
["Dyspnoea", "Wheezing"],
["Orthopnoea", "Angina"],
["Coffee ground vomiting", "Melaena"],
["Agnosia", "Apraxia"]
]
and the code to write it in tableView
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String?
{
return self.SymptomsSections[section]
}
override func numberOfSections(in tableView: UITableView) -> Int
{
return self.SymptomsSections.count
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
return SymptomsList[section].count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
let cell = tableView.dequeueReusableCell(withIdentifier: "SymptomsCell", for: indexPath)
cell.textLabel?.text = SymptomsList[indexPath.section][indexPath.row]
return cell
}
arrays swift xcode struct tableview
I'm mostly new to iOS and Xcode dev, so I'm just here asking for some handholding for now...
I'm making an app with a TableView of medical symptoms. I've managed to populate the tableview with data from an array and separate that into sections depending medical specialty. However, I've run into a brick wall with regards to being able to checkmark multiple symptoms in the table, and save that for later use in another ViewController.
The easiest method for me to understand is to create a dictionary with the whole list of symptoms, and then assign a boolean value to each of the symptoms depending on whether it is checked or unchecked. But I have no idea how to implement a struct that houses all the data, as well as being able to separate it into sections.
I'm also wondering whether it would be better to just keep all the data in an external file and allow the app to access the data.
I can add the code I've written so far if needed.
Help would be much appreciated!
Below is my current implementation of the data source
let SymptomsSections = ["General", "Respiratory", "Cardiac", "Abdominal", "Neurological", "Psychiatrical"]
let SymptomsList =
[
["Dry mouth", "Malaise", "Asthenia"],
["Dyspnoea", "Wheezing"],
["Orthopnoea", "Angina"],
["Coffee ground vomiting", "Melaena"],
["Agnosia", "Apraxia"]
]
and the code to write it in tableView
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String?
{
return self.SymptomsSections[section]
}
override func numberOfSections(in tableView: UITableView) -> Int
{
return self.SymptomsSections.count
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
return SymptomsList[section].count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
let cell = tableView.dequeueReusableCell(withIdentifier: "SymptomsCell", for: indexPath)
cell.textLabel?.text = SymptomsList[indexPath.section][indexPath.row]
return cell
}
arrays swift xcode struct tableview
arrays swift xcode struct tableview
edited Nov 14 at 9:00
asked Nov 14 at 8:19
Jeremy Hao-Yang Choi
174
174
do you need to save those data locally ? to show each time the apps start ? or create them each time you open the application ?
– Tobi
Nov 14 at 8:24
I want the data stored locally, and the list will remain constant, and show when the app starts
– Jeremy Hao-Yang Choi
Nov 14 at 8:28
you know storing data locally is a big topic, i recommend you to first create each time user open the application then after you have the ability to do them by your self you can jump to the next step and store them.
– Tobi
Nov 14 at 8:29
add a comment |
do you need to save those data locally ? to show each time the apps start ? or create them each time you open the application ?
– Tobi
Nov 14 at 8:24
I want the data stored locally, and the list will remain constant, and show when the app starts
– Jeremy Hao-Yang Choi
Nov 14 at 8:28
you know storing data locally is a big topic, i recommend you to first create each time user open the application then after you have the ability to do them by your self you can jump to the next step and store them.
– Tobi
Nov 14 at 8:29
do you need to save those data locally ? to show each time the apps start ? or create them each time you open the application ?
– Tobi
Nov 14 at 8:24
do you need to save those data locally ? to show each time the apps start ? or create them each time you open the application ?
– Tobi
Nov 14 at 8:24
I want the data stored locally, and the list will remain constant, and show when the app starts
– Jeremy Hao-Yang Choi
Nov 14 at 8:28
I want the data stored locally, and the list will remain constant, and show when the app starts
– Jeremy Hao-Yang Choi
Nov 14 at 8:28
you know storing data locally is a big topic, i recommend you to first create each time user open the application then after you have the ability to do them by your self you can jump to the next step and store them.
– Tobi
Nov 14 at 8:29
you know storing data locally is a big topic, i recommend you to first create each time user open the application then after you have the ability to do them by your self you can jump to the next step and store them.
– Tobi
Nov 14 at 8:29
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
Updated answer
I ran the code shared by OP and noticed that it was crashing. The main reason why it does so is because SymptomsSections
& SymptomsList
does not have same number of contents, thus resulting in the out of index range crash
for the smaller array which in our case is SymptomsList
. For workaround I have added the line SymptomsList.indices.contains(index)
which basically checks whether any object exists at the given index before accessing it. This resolved our crash. Then I proceeded to update the dictionaries and the accessing method. Also attached is the output screen for your understanding.
Please go through the code
let SymptomsSections = ["General", "Respiratory", "Cardiac", "Abdominal", "Neurological", "Psychiatrical"]
let SymptomsList = [[["name":"Dry mouth", "checked" : true], ["name":"Malaise", "checked" : false], ["name":"Asthenia", "checked" : true]],
[["name":"Dyspnoea", "checked" : true], ["name":"Wheezing", "checked" : false]],
[["name":"Orthopnoea", "checked" : false], ["name":"Angina", "checked" : true]],
[["name":"Coffee ground vomiting", "checked" : true], ["name":"Melaena", "checked" : true]],
[["name":"Agnosia", "checked" : false], ["name":"Apraxia", "checked" : true]]]
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return self.SymptomsSections[section]
}
func numberOfSections(in tableView: UITableView) -> Int {
return self.SymptomsSections.count
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if SymptomsList.indices.contains(section) {
return SymptomsList[section].count
} else {
return 0
}
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "SymptomsCell", for: indexPath)
if SymptomsList.indices.contains(indexPath.section) {
cell.textLabel?.text = SymptomsList[indexPath.section][indexPath.row]["name"] as? String
if SymptomsList[indexPath.section][indexPath.row]["checked"] as! Bool {
cell.accessoryType = UITableViewCellAccessoryType.checkmark
} else {
cell.accessoryType = UITableViewCellAccessoryType.none
}
} else {
cell.textLabel?.text = nil
cell.accessoryType = UITableViewCellAccessoryType.none
}
return cell
}
Original answer
Well, to show something you need to know that thing. Not sure how you are getting your data. But I can imagine your datasource for tableview looks something like this:
let symptoms = ["fever", "cold", "heart ache"]
You're correct when you said that the easiest way out would be using dictionary. Imagine having the updated data source being an array of dictionaries, like so:
let symptoms = [["name":"fever", "checked":true], ["name":"cold", "checked":true], ["name":"heart ache", "checked":false]]
While assigning the cell in cellForRow
method. You can use something like below:
cell.titleLabel.text = symptoms[indexPath.row]["name"]
if symptoms[indexPath.row]["checked"] {
cell.accessoryType = UITableViewCellAccessoryType.checkmark
} else {
cell.accessoryType = UITableViewCellAccessoryType.none
}
I've attached what my code looks like at the moment. I see how you created the array of dictionaries, but would I be able to implement that into a tableView with sections?
– Jeremy Hao-Yang Choi
Nov 14 at 9:01
1
@JeremyHao-YangChoi Yes ofcourse why not! Given if your code works the way you intend it to. Then the way I see it, you just have to make minor changes in the code base you shared. First change, would be to updateSymptomsList
to hold dictionary. Second change, would be the linecell.textLabel?.text = SymptomsList[indexPath.section][indexPath.row]
as to how you would access it.
– iOSer
Nov 14 at 9:24
1
@JeremyHao-YangChoi I've updated the answer to resolve the problems face in your specific code. If this or any other answer helps you in achieving what you wanted to achieve please do remember to mark them as correct, so that it helps others in future.
– iOSer
Nov 15 at 9:38
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
Updated answer
I ran the code shared by OP and noticed that it was crashing. The main reason why it does so is because SymptomsSections
& SymptomsList
does not have same number of contents, thus resulting in the out of index range crash
for the smaller array which in our case is SymptomsList
. For workaround I have added the line SymptomsList.indices.contains(index)
which basically checks whether any object exists at the given index before accessing it. This resolved our crash. Then I proceeded to update the dictionaries and the accessing method. Also attached is the output screen for your understanding.
Please go through the code
let SymptomsSections = ["General", "Respiratory", "Cardiac", "Abdominal", "Neurological", "Psychiatrical"]
let SymptomsList = [[["name":"Dry mouth", "checked" : true], ["name":"Malaise", "checked" : false], ["name":"Asthenia", "checked" : true]],
[["name":"Dyspnoea", "checked" : true], ["name":"Wheezing", "checked" : false]],
[["name":"Orthopnoea", "checked" : false], ["name":"Angina", "checked" : true]],
[["name":"Coffee ground vomiting", "checked" : true], ["name":"Melaena", "checked" : true]],
[["name":"Agnosia", "checked" : false], ["name":"Apraxia", "checked" : true]]]
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return self.SymptomsSections[section]
}
func numberOfSections(in tableView: UITableView) -> Int {
return self.SymptomsSections.count
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if SymptomsList.indices.contains(section) {
return SymptomsList[section].count
} else {
return 0
}
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "SymptomsCell", for: indexPath)
if SymptomsList.indices.contains(indexPath.section) {
cell.textLabel?.text = SymptomsList[indexPath.section][indexPath.row]["name"] as? String
if SymptomsList[indexPath.section][indexPath.row]["checked"] as! Bool {
cell.accessoryType = UITableViewCellAccessoryType.checkmark
} else {
cell.accessoryType = UITableViewCellAccessoryType.none
}
} else {
cell.textLabel?.text = nil
cell.accessoryType = UITableViewCellAccessoryType.none
}
return cell
}
Original answer
Well, to show something you need to know that thing. Not sure how you are getting your data. But I can imagine your datasource for tableview looks something like this:
let symptoms = ["fever", "cold", "heart ache"]
You're correct when you said that the easiest way out would be using dictionary. Imagine having the updated data source being an array of dictionaries, like so:
let symptoms = [["name":"fever", "checked":true], ["name":"cold", "checked":true], ["name":"heart ache", "checked":false]]
While assigning the cell in cellForRow
method. You can use something like below:
cell.titleLabel.text = symptoms[indexPath.row]["name"]
if symptoms[indexPath.row]["checked"] {
cell.accessoryType = UITableViewCellAccessoryType.checkmark
} else {
cell.accessoryType = UITableViewCellAccessoryType.none
}
I've attached what my code looks like at the moment. I see how you created the array of dictionaries, but would I be able to implement that into a tableView with sections?
– Jeremy Hao-Yang Choi
Nov 14 at 9:01
1
@JeremyHao-YangChoi Yes ofcourse why not! Given if your code works the way you intend it to. Then the way I see it, you just have to make minor changes in the code base you shared. First change, would be to updateSymptomsList
to hold dictionary. Second change, would be the linecell.textLabel?.text = SymptomsList[indexPath.section][indexPath.row]
as to how you would access it.
– iOSer
Nov 14 at 9:24
1
@JeremyHao-YangChoi I've updated the answer to resolve the problems face in your specific code. If this or any other answer helps you in achieving what you wanted to achieve please do remember to mark them as correct, so that it helps others in future.
– iOSer
Nov 15 at 9:38
add a comment |
up vote
2
down vote
accepted
Updated answer
I ran the code shared by OP and noticed that it was crashing. The main reason why it does so is because SymptomsSections
& SymptomsList
does not have same number of contents, thus resulting in the out of index range crash
for the smaller array which in our case is SymptomsList
. For workaround I have added the line SymptomsList.indices.contains(index)
which basically checks whether any object exists at the given index before accessing it. This resolved our crash. Then I proceeded to update the dictionaries and the accessing method. Also attached is the output screen for your understanding.
Please go through the code
let SymptomsSections = ["General", "Respiratory", "Cardiac", "Abdominal", "Neurological", "Psychiatrical"]
let SymptomsList = [[["name":"Dry mouth", "checked" : true], ["name":"Malaise", "checked" : false], ["name":"Asthenia", "checked" : true]],
[["name":"Dyspnoea", "checked" : true], ["name":"Wheezing", "checked" : false]],
[["name":"Orthopnoea", "checked" : false], ["name":"Angina", "checked" : true]],
[["name":"Coffee ground vomiting", "checked" : true], ["name":"Melaena", "checked" : true]],
[["name":"Agnosia", "checked" : false], ["name":"Apraxia", "checked" : true]]]
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return self.SymptomsSections[section]
}
func numberOfSections(in tableView: UITableView) -> Int {
return self.SymptomsSections.count
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if SymptomsList.indices.contains(section) {
return SymptomsList[section].count
} else {
return 0
}
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "SymptomsCell", for: indexPath)
if SymptomsList.indices.contains(indexPath.section) {
cell.textLabel?.text = SymptomsList[indexPath.section][indexPath.row]["name"] as? String
if SymptomsList[indexPath.section][indexPath.row]["checked"] as! Bool {
cell.accessoryType = UITableViewCellAccessoryType.checkmark
} else {
cell.accessoryType = UITableViewCellAccessoryType.none
}
} else {
cell.textLabel?.text = nil
cell.accessoryType = UITableViewCellAccessoryType.none
}
return cell
}
Original answer
Well, to show something you need to know that thing. Not sure how you are getting your data. But I can imagine your datasource for tableview looks something like this:
let symptoms = ["fever", "cold", "heart ache"]
You're correct when you said that the easiest way out would be using dictionary. Imagine having the updated data source being an array of dictionaries, like so:
let symptoms = [["name":"fever", "checked":true], ["name":"cold", "checked":true], ["name":"heart ache", "checked":false]]
While assigning the cell in cellForRow
method. You can use something like below:
cell.titleLabel.text = symptoms[indexPath.row]["name"]
if symptoms[indexPath.row]["checked"] {
cell.accessoryType = UITableViewCellAccessoryType.checkmark
} else {
cell.accessoryType = UITableViewCellAccessoryType.none
}
I've attached what my code looks like at the moment. I see how you created the array of dictionaries, but would I be able to implement that into a tableView with sections?
– Jeremy Hao-Yang Choi
Nov 14 at 9:01
1
@JeremyHao-YangChoi Yes ofcourse why not! Given if your code works the way you intend it to. Then the way I see it, you just have to make minor changes in the code base you shared. First change, would be to updateSymptomsList
to hold dictionary. Second change, would be the linecell.textLabel?.text = SymptomsList[indexPath.section][indexPath.row]
as to how you would access it.
– iOSer
Nov 14 at 9:24
1
@JeremyHao-YangChoi I've updated the answer to resolve the problems face in your specific code. If this or any other answer helps you in achieving what you wanted to achieve please do remember to mark them as correct, so that it helps others in future.
– iOSer
Nov 15 at 9:38
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
Updated answer
I ran the code shared by OP and noticed that it was crashing. The main reason why it does so is because SymptomsSections
& SymptomsList
does not have same number of contents, thus resulting in the out of index range crash
for the smaller array which in our case is SymptomsList
. For workaround I have added the line SymptomsList.indices.contains(index)
which basically checks whether any object exists at the given index before accessing it. This resolved our crash. Then I proceeded to update the dictionaries and the accessing method. Also attached is the output screen for your understanding.
Please go through the code
let SymptomsSections = ["General", "Respiratory", "Cardiac", "Abdominal", "Neurological", "Psychiatrical"]
let SymptomsList = [[["name":"Dry mouth", "checked" : true], ["name":"Malaise", "checked" : false], ["name":"Asthenia", "checked" : true]],
[["name":"Dyspnoea", "checked" : true], ["name":"Wheezing", "checked" : false]],
[["name":"Orthopnoea", "checked" : false], ["name":"Angina", "checked" : true]],
[["name":"Coffee ground vomiting", "checked" : true], ["name":"Melaena", "checked" : true]],
[["name":"Agnosia", "checked" : false], ["name":"Apraxia", "checked" : true]]]
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return self.SymptomsSections[section]
}
func numberOfSections(in tableView: UITableView) -> Int {
return self.SymptomsSections.count
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if SymptomsList.indices.contains(section) {
return SymptomsList[section].count
} else {
return 0
}
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "SymptomsCell", for: indexPath)
if SymptomsList.indices.contains(indexPath.section) {
cell.textLabel?.text = SymptomsList[indexPath.section][indexPath.row]["name"] as? String
if SymptomsList[indexPath.section][indexPath.row]["checked"] as! Bool {
cell.accessoryType = UITableViewCellAccessoryType.checkmark
} else {
cell.accessoryType = UITableViewCellAccessoryType.none
}
} else {
cell.textLabel?.text = nil
cell.accessoryType = UITableViewCellAccessoryType.none
}
return cell
}
Original answer
Well, to show something you need to know that thing. Not sure how you are getting your data. But I can imagine your datasource for tableview looks something like this:
let symptoms = ["fever", "cold", "heart ache"]
You're correct when you said that the easiest way out would be using dictionary. Imagine having the updated data source being an array of dictionaries, like so:
let symptoms = [["name":"fever", "checked":true], ["name":"cold", "checked":true], ["name":"heart ache", "checked":false]]
While assigning the cell in cellForRow
method. You can use something like below:
cell.titleLabel.text = symptoms[indexPath.row]["name"]
if symptoms[indexPath.row]["checked"] {
cell.accessoryType = UITableViewCellAccessoryType.checkmark
} else {
cell.accessoryType = UITableViewCellAccessoryType.none
}
Updated answer
I ran the code shared by OP and noticed that it was crashing. The main reason why it does so is because SymptomsSections
& SymptomsList
does not have same number of contents, thus resulting in the out of index range crash
for the smaller array which in our case is SymptomsList
. For workaround I have added the line SymptomsList.indices.contains(index)
which basically checks whether any object exists at the given index before accessing it. This resolved our crash. Then I proceeded to update the dictionaries and the accessing method. Also attached is the output screen for your understanding.
Please go through the code
let SymptomsSections = ["General", "Respiratory", "Cardiac", "Abdominal", "Neurological", "Psychiatrical"]
let SymptomsList = [[["name":"Dry mouth", "checked" : true], ["name":"Malaise", "checked" : false], ["name":"Asthenia", "checked" : true]],
[["name":"Dyspnoea", "checked" : true], ["name":"Wheezing", "checked" : false]],
[["name":"Orthopnoea", "checked" : false], ["name":"Angina", "checked" : true]],
[["name":"Coffee ground vomiting", "checked" : true], ["name":"Melaena", "checked" : true]],
[["name":"Agnosia", "checked" : false], ["name":"Apraxia", "checked" : true]]]
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return self.SymptomsSections[section]
}
func numberOfSections(in tableView: UITableView) -> Int {
return self.SymptomsSections.count
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if SymptomsList.indices.contains(section) {
return SymptomsList[section].count
} else {
return 0
}
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "SymptomsCell", for: indexPath)
if SymptomsList.indices.contains(indexPath.section) {
cell.textLabel?.text = SymptomsList[indexPath.section][indexPath.row]["name"] as? String
if SymptomsList[indexPath.section][indexPath.row]["checked"] as! Bool {
cell.accessoryType = UITableViewCellAccessoryType.checkmark
} else {
cell.accessoryType = UITableViewCellAccessoryType.none
}
} else {
cell.textLabel?.text = nil
cell.accessoryType = UITableViewCellAccessoryType.none
}
return cell
}
Original answer
Well, to show something you need to know that thing. Not sure how you are getting your data. But I can imagine your datasource for tableview looks something like this:
let symptoms = ["fever", "cold", "heart ache"]
You're correct when you said that the easiest way out would be using dictionary. Imagine having the updated data source being an array of dictionaries, like so:
let symptoms = [["name":"fever", "checked":true], ["name":"cold", "checked":true], ["name":"heart ache", "checked":false]]
While assigning the cell in cellForRow
method. You can use something like below:
cell.titleLabel.text = symptoms[indexPath.row]["name"]
if symptoms[indexPath.row]["checked"] {
cell.accessoryType = UITableViewCellAccessoryType.checkmark
} else {
cell.accessoryType = UITableViewCellAccessoryType.none
}
edited Nov 14 at 11:54
answered Nov 14 at 8:42
iOSer
759620
759620
I've attached what my code looks like at the moment. I see how you created the array of dictionaries, but would I be able to implement that into a tableView with sections?
– Jeremy Hao-Yang Choi
Nov 14 at 9:01
1
@JeremyHao-YangChoi Yes ofcourse why not! Given if your code works the way you intend it to. Then the way I see it, you just have to make minor changes in the code base you shared. First change, would be to updateSymptomsList
to hold dictionary. Second change, would be the linecell.textLabel?.text = SymptomsList[indexPath.section][indexPath.row]
as to how you would access it.
– iOSer
Nov 14 at 9:24
1
@JeremyHao-YangChoi I've updated the answer to resolve the problems face in your specific code. If this or any other answer helps you in achieving what you wanted to achieve please do remember to mark them as correct, so that it helps others in future.
– iOSer
Nov 15 at 9:38
add a comment |
I've attached what my code looks like at the moment. I see how you created the array of dictionaries, but would I be able to implement that into a tableView with sections?
– Jeremy Hao-Yang Choi
Nov 14 at 9:01
1
@JeremyHao-YangChoi Yes ofcourse why not! Given if your code works the way you intend it to. Then the way I see it, you just have to make minor changes in the code base you shared. First change, would be to updateSymptomsList
to hold dictionary. Second change, would be the linecell.textLabel?.text = SymptomsList[indexPath.section][indexPath.row]
as to how you would access it.
– iOSer
Nov 14 at 9:24
1
@JeremyHao-YangChoi I've updated the answer to resolve the problems face in your specific code. If this or any other answer helps you in achieving what you wanted to achieve please do remember to mark them as correct, so that it helps others in future.
– iOSer
Nov 15 at 9:38
I've attached what my code looks like at the moment. I see how you created the array of dictionaries, but would I be able to implement that into a tableView with sections?
– Jeremy Hao-Yang Choi
Nov 14 at 9:01
I've attached what my code looks like at the moment. I see how you created the array of dictionaries, but would I be able to implement that into a tableView with sections?
– Jeremy Hao-Yang Choi
Nov 14 at 9:01
1
1
@JeremyHao-YangChoi Yes ofcourse why not! Given if your code works the way you intend it to. Then the way I see it, you just have to make minor changes in the code base you shared. First change, would be to update
SymptomsList
to hold dictionary. Second change, would be the line cell.textLabel?.text = SymptomsList[indexPath.section][indexPath.row]
as to how you would access it.– iOSer
Nov 14 at 9:24
@JeremyHao-YangChoi Yes ofcourse why not! Given if your code works the way you intend it to. Then the way I see it, you just have to make minor changes in the code base you shared. First change, would be to update
SymptomsList
to hold dictionary. Second change, would be the line cell.textLabel?.text = SymptomsList[indexPath.section][indexPath.row]
as to how you would access it.– iOSer
Nov 14 at 9:24
1
1
@JeremyHao-YangChoi I've updated the answer to resolve the problems face in your specific code. If this or any other answer helps you in achieving what you wanted to achieve please do remember to mark them as correct, so that it helps others in future.
– iOSer
Nov 15 at 9:38
@JeremyHao-YangChoi I've updated the answer to resolve the problems face in your specific code. If this or any other answer helps you in achieving what you wanted to achieve please do remember to mark them as correct, so that it helps others in future.
– iOSer
Nov 15 at 9:38
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53295714%2fimplement-a-tableview-with-sections-and-populating-it-with-data-from-a-struct%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
do you need to save those data locally ? to show each time the apps start ? or create them each time you open the application ?
– Tobi
Nov 14 at 8:24
I want the data stored locally, and the list will remain constant, and show when the app starts
– Jeremy Hao-Yang Choi
Nov 14 at 8:28
you know storing data locally is a big topic, i recommend you to first create each time user open the application then after you have the ability to do them by your self you can jump to the next step and store them.
– Tobi
Nov 14 at 8:29