nodes-ios / SwiftAddressBook

Complete wrapper for the ABAddressBook C-Framework for iOS, written in Swift to be typesafe and convenient

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This library has been deprecated and the repo has been archived.

The code is still here and you can still clone it, however the library will not receive any more updates or support.

SwiftAddressBook - A strong-typed Swift Wrapper for ABAddressBook

CI Status Version License Platform

Complete wrapper for the ABAddressBook C-Framework for iOS, written in Swift to be typesafe and convenient

Description

It is tedious and requires very much reading in the documentation if you want to understand the ABAddressBook in iOS. To provide a solution, this wrapper uses Swift, which is strong-typed (unlike c). It also circumvents the use of unsafe c-pointers when accessing ABAddressBook from Swift, by directly casting them to the correct type. All properties, previously only available via the correct key, can now be accessed conveniently via variables.

Here´s how you would access ABAddressBook via SwiftAddressBook: How To

Some minimal examples below:

  1. Request access (important: changed in 0.6.1)
SwiftAddressBook.requestAccessWithCompletion({ (success, error) -> Void in
    if success {
      //do something with swiftAddressBook
    }
    else {
      //no success. Optionally evaluate error
    }
})
  1. Use Addressbook: - Get array of all people and log their phone numbers)
    if let people = swiftAddressBook?.allPeople {
        for person in people {
          NSLog("%@", person.phoneNumbers?.map( {$0.value} ))
        }
    }
- Create Contacts
  ```Swift
  var person = SwiftAddressBookPerson.create()
  person.firstName = "John"
  
  var email = MultivalueEntry(value: "someone@gmail.com", label: "home", id: 0)
  person.emails = [email]
  
  swiftAddressBook?.addRecord(person)
  swiftAddressBook?.save()
  ```

Complicated Swift typecasting to NS-..., thousand times of unwrapping optionals, figuring out which constant is the key to your person property, distinguishing between group, source or person - nothing that you have to deal with any more

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

Installation

SwiftAddressBook is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "SwiftAddressBook"

Note: version 0.36 requires you to also specify the flag

use_frameworks!

as documented here and then import SwiftAddressBook in your project (and import AddressBook for using constants from ABAddressBook)

If you don´t want to use CocoaPods, or need to maintain iOS7 compatibility, just copy all files from the folder Pod/Classes into your project. This way, you don´t need to import SwiftAddressBook-

License

Copyright 2014 Socialbit GmbH

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.   

About

Complete wrapper for the ABAddressBook C-Framework for iOS, written in Swift to be typesafe and convenient

License:Apache License 2.0


Languages

Language:Swift 93.5%Language:Objective-C 4.1%Language:Ruby 2.2%Language:C 0.2%