ios - 如何在 INSendPaymentIntent 中选择电话号码

标签 ios iphone swift ios10 sirikit

在我的应用程序中,我需要使用用户的电话号码(而不是用户的联系人姓名)发送付款。因此,如果联系人中的用户有 2 个电话号码,则用户必须选择其中一个号码(如电话调用意图)。

在函数 funcsolvePayee(forSendPayment Intent: INSendPaymentIntent, with Complete: @escaping (INPersonResolutionResult) -> Void) 中,我只看到用户的姓名,但没有电话号码。即使 intent.payee.personH​​andle 总是 == nil

最佳答案

我使用了这个解决方法(只需在显示联系人姓名时将号码添加到联系人姓名中)。下面是resolvePayee函数的完整代码:

func resolvePayee(forSendPayment intent: INSendPaymentIntent, with completion: @escaping (INPersonResolutionResult) -> Void) {

        print("start resolving payee")

        if let payee = intent.payee, payee.displayName.length > 0 {

            // search proper phone number if we chose between these numbers before
            var foundPhoneNumberInBuferNumbers: String? = nil
            if let arrayOfSavedPhones = PaymentIntentHandler.resolvePayeeHelp_offeredPhoneNumbersFor1Contact {
                for phone in arrayOfSavedPhones {
                    if payee.displayName.hasSuffix(phone) {
                        foundPhoneNumberInBuferNumbers = phone
                        break
                    }
                }
                if foundPhoneNumberInBuferNumbers == nil { // if we didn't manage to find this number that means that we have a new request for a new contact, so we don't need to remember number in buffer anymore
                    print("can't find phone number for \(payee.displayName), so we remove all buffer numbers = \(PaymentIntentHandler.resolvePayeeHelp_offeredPhoneNumbersFor1Contact)")
                    PaymentIntentHandler.resolvePayeeHelp_offeredPhoneNumbersFor1Contact = nil
                }
            }

            let searchName = foundPhoneNumberInBuferNumbers != nil ? payee.displayName.replacingOccurrences(of: " " + foundPhoneNumberInBuferNumbers!, with: "") : payee.displayName

            Singleton.sharedInstance.contactsService_getPhoneContacts(contactIdentifiresToFetch: nil, matchingName: searchName, showAlert: false, completionBlock: { (havePermission, customContactsMatchingName) in
                if !havePermission { // user didn't grant permissions
                    print("unsupported because don't have permissions")
                    completion(INPersonResolutionResult.unsupported())
                    return
                }

                switch customContactsMatchingName.count {
                case 2 ... Int.max: // user has to choose
                    let arrayOfPersons = customContactsMatchingName.map({ (phoneBookContact) -> INPerson in
                        return phoneBookContact.inSiriPerson()
                    })
                    print("disambiguation between several contacts")
                    completion(INPersonResolutionResult.disambiguation(with: arrayOfPersons))
                case 1:
                    let contactCustom = customContactsMatchingName[0]
                    switch contactCustom.phoneNumbers.count {
                    case 0:
                        print("unsupported because don't have phone numbers")
                        completion(INPersonResolutionResult.unsupported())
                    case 1:
                        print("success")
                        completion(INPersonResolutionResult.success(with: contactCustom.inSiriPerson()))
                    case 2 ... Int.max:

                        print("now we have a uniq contact, but several phone numbers")

                        if foundPhoneNumberInBuferNumbers == nil { // we need user to choose between several phone numbers

                            var arrayOfStringNumbers = [String]()
                            var arrayOfPersonsToChoose = [INPerson]()
                            for phoneNumber in contactCustom.phoneNumbers {
                                let numberOnlyDigits = Singleton.sharedInstance.phone_getPhoneOnlyDigits(phoneNumber.number)
                                let formattedNumber = Singleton.sharedInstance.phone_getFormattedPhone("+" + numberOnlyDigits, allowLetters: false)
                                arrayOfStringNumbers.append(formattedNumber)
                                let personHandler = INPersonHandle(value: formattedNumber, type: .phoneNumber)
                                let person = INPerson(personHandle: personHandler, nameComponents: nil, displayName: payee.displayName + " " + formattedNumber, image: nil, contactIdentifier: contactCustom.id, customIdentifier: formattedNumber)
                                arrayOfPersonsToChoose.append(person)
                            }

                            PaymentIntentHandler.resolvePayeeHelp_offeredPhoneNumbersFor1Contact = arrayOfStringNumbers

                            print("disambiguation in one contact between several phones")
                            completion(INPersonResolutionResult.disambiguation(with: arrayOfPersonsToChoose))
                        }
                        else {

                            // found proper phone number
                            print("success after choosing bufer number")
                            let personHandle = INPersonHandle(value: foundPhoneNumberInBuferNumbers!, type: .phoneNumber)
                            let displayName = payee.displayName.replacingOccurrences(of: " " +  foundPhoneNumberInBuferNumbers!, with: "")
                            completion(INPersonResolutionResult.success(with: INPerson(personHandle: personHandle, nameComponents: nil, displayName: displayName, image: nil, contactIdentifier: nil, customIdentifier: personHandle.value)))
                        }


                    default:
                        print("unsupported: can't happen")
                        completion(INPersonResolutionResult.unsupported())
                    }
                case 0:
                    print("unsupported because can't find this contact in phonebook = \(searchName), contacts in buffer = \(PaymentIntentHandler.resolvePayeeHelp_offeredPhoneNumbersFor1Contact)")
                    completion(INPersonResolutionResult.unsupported())
                default:
                    print("unsupported: can't happen")
                    completion(INPersonResolutionResult.unsupported())
                }
            })
        }
        else {
            print("needsValue")
            PaymentIntentHandler.resolvePayeeHelp_offeredPhoneNumbersFor1Contact = nil
            completion(INPersonResolutionResult.needsValue())
        }
    }

关于ios - 如何在 INSendPaymentIntent 中选择电话号码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40205898/

相关文章:

ios - 更改 ios 应用程序下方标签栏的高度和设计

iphone - iPhone 上的线程绘图

ios - 我的应用程序一直拒绝访问联系人 iOS - Swift

ios - 表格 View 单元格大小取决于 Storyboard中的预览设备大小

ios - OpenGL ES : Do vertex structs need x, y 和 z?

ios - 如何在 iOS 中使用 Contacts Framework 获取更改的联系人

android - 如何保护 Ionic 应用程序上的 Google map API key ?

ios - 如何删除 UIButton 选定的背景颜色?

ios - 如何在 iOS 中更新 XLPagerTabStrip 的指标信息?

ios - 如何知道 UIWebView 何时被用户触摸