In CourseViewController I have the following variable:
var courses = [Course]()
declared at top
I try to segue to CourseViewController, by doing this
let dc = segue.destination as! CourseListViewController
dc.courses = items[tag] as! [Course]
Is that the right way to do so? "items[tag] as! [Course]" is this correct?
items?