D
Size: a a a
AN
AN
AN
AN
AN
AN
AN
D
func updateTable() {
API().getAccounts( completion: { [
weak
self] (list, error)
in
if error ==
nil {
if
let list = list {
self?.accountsList = list
DispatchQueue.main.async {
self?.tableView.reloadData()
}
}
}
else {
print("Error: \(error?.domain ?? "underfined")")
}
})
}
DY
DY
DY
DY
DY
DY
L
D