I know this is going to be super elementary, but I have this piece of code:
var labels: [String]? func initVC(image: Images){ self.image = image le
Labels has never been initialised. Change
var labels:[String]?
to
var labels:[String] = []