var dic: [String: [[Item]]] //dic with string key and value of array in array of my Class Object
How can i take the values from this dic and store it in an array as this:
var array: [[Item]]//Array of array
How can I store the values from dic Into this array I tried using the for(key, value) statement. But it wouldn't let me append the values to the array variable. If you need more information I'm happy to give it, but if you understand what I'm trying to do and you know how to do it I appreciate your answer and it's very much needed!!!