1

当联系人发生变化时,我需要运行一个函数。如果应用程序处于活动状态,您可以按照本文中的说明NotificationCenter执行此操作(有时当我向现有联系人添加新号码时它会起作用)。我如何知道应用程序启动后联系人(或多个联系人)已更改?

4

1 回答 1

2

我为我的任务做了以下功能

  @objc private func matchingContacts() {
        if isSuccessContactUploading {
            contactManager.matchingContacts(notMatch: { [weak self] in
                guard let _self = self else { return }
                debugPrint("matchingContacts != equals")
                _self.isSuccessContactUploading = false
                _self.syncContacts()
            })
        }
    }

这些功能在 ContactManager

   func matchingContacts(notMatch: (() -> Void)?) {
        getContacts { (contacts, error) in
            if error == nil {
                debugPrint("contacts count", contacts.count)
                self.getContactsDictionaryFromCache(contacts, notMatch: {
                    notMatch?()
                })
            }
        }
    }

 private func getContactsDictionaryFromCache(_ contacts: [CNContact], notMatch: (() -> Void)?) {
        var isMatching = true
        for contact in contacts {
            let key = contact.identifier

            do {
                let cache = try Cache<NSDictionary>(name: "Contacts")
                if let contactDictionary = cache[key] {
                    if !contactDictionary.isEqual(to: contact.dictionary) {
                        debugPrint("contactDictionary not matching")
                        isMatching = false
                    }
                } else {
                    debugPrint("contactDictionary isn't here")
                    isMatching = false
                }
            } catch {
                debugPrint(error.localizedDescription)
                isMatching = false
            }
        }

        if !isMatching {
            notMatch?()
        }

        cacheContacts(contacts)
    }

private func cacheContacts(_ contacts: [CNContact]) {
        for contact in contacts {
            let contactDictionary = contact.dictionary as NSDictionary
            let key = contact.identifier

            do {
                let cache = try Cache<NSDictionary>(name: "Contacts")
                cache[key] = contactDictionary
            } catch {
                debugPrint(error.localizedDescription)
            }
        }
    }
于 2017-01-24T20:07:41.910 回答