How do I iterate through multiple arrays in a for loop. I am aware of the zip method, but what if i have 9 arrays?
var usernames = [String]()
var avatars = [PFFile]()
var postDescriptions = [String]()
var locations = [String]()
var latitudes = [String]()
var longitudes = [String]()
var postFiles = [PFFile]()
var dates = [Date]()
var uniqueIDs = [String]()
and as you can see, they are of multiple formats.
Userclass and one array of instances of that class.