swift array index loop code example
Example 1: swift loop through array
guard let currentUser = currentUser,
let photos = currentUser.photos as? [ModelAttachment] else
{
// break or return
}
// now 'photos' is available outside the guard
for object in photos {
let url = object.url
}
Example 2: swift loop through array
for object in array {
// object is replaced with the array item for each loop
}