Nella mia applicazione ho aggiunto un oggetto nella matrice quando si seleziona la cella e deseleziono e rimuovi l'oggetto quando si riseleziona la cella. Ho usato quel codice ma mi da errore.
extension Array {
func indexOfObject(object : AnyObject) -> NSInteger {
return (self as NSArray).indexOfObject(object)
}
mutating func removeObject(object : AnyObject) {
for var index = self.indexOfObject(object); index != NSNotFound; index = self.indexOfObject(object) {
self.removeAtIndex(index)
}
}
}
class MyViewController: UITableViewController {
var arrContacts: [Any] = []
var contacts: [Any] = []
func tableView(_ tableView: UITableView, didDeselectRowAt indexPath: IndexPath) {
arrContacts.removeObject(contacts[indexPath.row])
}
}
Mi dà 2 errori come questo:
C-style for statement has been removed in Swift 3
Value of type '[Any]' has no member 'removeObject'
Set<Contact>
piuttosto che un Array. Potete fornire maggiori informazioni sul vostro oggetto di contatto? Se l'hai fatto da solo, avrai bisogno che sia conformeHashable
eEquatable
per metterlo in un set