答案 0 :(得分:2)
看起来像self.fullresolutionimages,数组/字典,是导致错误的零。
确保先分配self.fullResolutionImages = [UIImage]()
;
此外,我不是百分之百确定在没有内容的情况下执行索引是否有效,因此您可能希望追加self.fullResolutionImages.append(self.fullResolutionImage)
,或以这种方式插入,self.fullResolutionImages.insert(self.fullResolutionImage, atIndex: 0)
答案 1 :(得分:0)
fullResolutionImages = nil,消息是否正确,不是吗?