Проверьте переоборудование Arrray Last Item Swift
for (idx, element) in array.enumerated() {
if idx == array.endIndex-1 {
// handling the last element
}
}
Sore Skylark