简体   繁体   English

获取Swift中的联系人姓名和电话号码

[英]Getting contact names and phone numbers in Swift

I know this has been asked a lot, yet I'm struggling to find a full solution and the few I find are in Objective C 我知道这已被问了很多,但我很难找到一个完整的解决方案,而我找到的少数是在Objective C中

I have managed to get this far 我成功地做到了这一点

public static func refreshContacts(){
    let status = ABAddressBookGetAuthorizationStatus()
    if status == .Denied || status == .Restricted {
        // user previously denied, to tell them to fix that in settings
        return
    }

    // open it

    var error: Unmanaged<CFError>?
    let addressBook: ABAddressBook? = ABAddressBookCreateWithOptions(nil, &error)?.takeRetainedValue()
    if addressBook == nil {
        println(error?.takeRetainedValue())
        return
    }

    // request permission to use it

    ABAddressBookRequestAccessWithCompletion(addressBook) {
        granted, error in

        if !granted {
            // warn the user that because they just denied permission, this functionality won't work
            // also let them know that they have to fix this in settings
            return
        }

        if let people = ABAddressBookCopyArrayOfAllPeople(addressBook)?.takeRetainedValue() as? NSArray {
            for person in people{
                var name = //??????
                var phoneumber = //??????
            }

        }
    }
}

If you read the comment, you can see there is one point where I am not too sure what to do How can i get the name and phone numbers? 如果您阅读评论,您可以看到有一点我不太清楚该怎么做我如何获得姓名和电话号码?

I found a solution 我找到了解决方案

public static func refreshContacts(){
    let status = ABAddressBookGetAuthorizationStatus()
    if status == .Denied || status == .Restricted {
        // user previously denied, to tell them to fix that in settings
        return
    }

    // open it

    var error: Unmanaged<CFError>?
    let addressBook: ABAddressBook? = ABAddressBookCreateWithOptions(nil, &error)?.takeRetainedValue()
    if addressBook == nil {
        println(error?.takeRetainedValue())
        return
    }

    // request permission to use it

    ABAddressBookRequestAccessWithCompletion(addressBook) {
        granted, error in

        if !granted {
            // warn the user that because they just denied permission, this functionality won't work
            // also let them know that they have to fix this in settings
            return
        }

        if let people = ABAddressBookCopyArrayOfAllPeople(addressBook)?.takeRetainedValue() as? NSArray {
            for person in people{
                if let name = ABRecordCopyValue(person, kABPersonFirstNameProperty).takeRetainedValue() as? String {
                    println(name)//persons name
                }
                let numbers:ABMultiValue = ABRecordCopyValue(
                    person, kABPersonPhoneProperty).takeRetainedValue()
                for ix in 0 ..< ABMultiValueGetCount(numbers) {
                    let label = ABMultiValueCopyLabelAtIndex(numbers,ix).takeRetainedValue() as String
                    let value = ABMultiValueCopyValueAtIndex(numbers,ix).takeRetainedValue() as! String
                    println("Phonenumber \(label) is \(value))
                }
            }

        }
    }
}

adapted from https://github.com/mattneub/Programming-iOS-Book-Examples/blob/master/bk2ch18p713addressBook/ch31p973addressBook/ViewController.swift 改编自https://github.com/mattneub/Programming-iOS-Book-Examples/blob/master/bk2ch18p713addressBook/ch31p973addressBook/ViewController.swift

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM