//인스턴스 맴버라 인스턴스를 생성해줘야 한다. public func setCache(){ DetailCollectionViewCell.self.JpgCache.totalCostLimit = 100 print("jpgCache size is \(DetailCollectionViewCell.self.JpgCache.totalCostLimit)") } //이제 스태틱 맴버라 인스턴스를 생성해줘야 한다. static public func setCache(){ DetailCollectionViewCell.self.JpgCache.totalCostLimit = 100 print("jpgCache size is \(DetailCollectionViewCell.self.JpgCache.totalCostLimit)")..