Hello Kevin,
I have read all three books and have learned a lot, thanks for that.
My question pertains to the attributes of core data and how to list them via UITableView.
I am using the mmBusinessObject method for CoreData and am slowly understanding all the little nuances of it.
Here are my current Attributes below:
import CoreData
extension StationEntity {
@NSManaged var icao: String
@NSManaged var state: String
@NSManaged var country: String
}
I am building a database with airport locations, I would like to incorporate a search function in the future, however for now all I want is to show on the FIRST UITableView is a list of countries. How would I go about showing only 1 instance of each country in the first view controller. At the moment I multiple instances of countries.
Instead of self.stationList.count what would I use?
Any help would be greatly appreciated.