├── .gitignore ├── ABAddressBook.h ├── ABAddressBook.m ├── ABAddressBookUI.h ├── ABAddressBookUI.m ├── ABGroup.h ├── ABGroup.m ├── ABMultiValue.h ├── ABMultiValue.m ├── ABPerson.h ├── ABPerson.m ├── ABProperties.h ├── ABRecord.h ├── ABRecord.m ├── ABRefInitialization.h ├── ABSource.h ├── ABSource.m ├── AddressBook.h ├── README.textile ├── iPhoneContacts.xcodeproj └── project.pbxproj └── iPhoneContacts_Prefix.pch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/.gitignore -------------------------------------------------------------------------------- /ABAddressBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/ABAddressBook.h -------------------------------------------------------------------------------- /ABAddressBook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/ABAddressBook.m -------------------------------------------------------------------------------- /ABAddressBookUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/ABAddressBookUI.h -------------------------------------------------------------------------------- /ABAddressBookUI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/ABAddressBookUI.m -------------------------------------------------------------------------------- /ABGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/ABGroup.h -------------------------------------------------------------------------------- /ABGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/ABGroup.m -------------------------------------------------------------------------------- /ABMultiValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/ABMultiValue.h -------------------------------------------------------------------------------- /ABMultiValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/ABMultiValue.m -------------------------------------------------------------------------------- /ABPerson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/ABPerson.h -------------------------------------------------------------------------------- /ABPerson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/ABPerson.m -------------------------------------------------------------------------------- /ABProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/ABProperties.h -------------------------------------------------------------------------------- /ABRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/ABRecord.h -------------------------------------------------------------------------------- /ABRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/ABRecord.m -------------------------------------------------------------------------------- /ABRefInitialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/ABRefInitialization.h -------------------------------------------------------------------------------- /ABSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/ABSource.h -------------------------------------------------------------------------------- /ABSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/ABSource.m -------------------------------------------------------------------------------- /AddressBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/AddressBook.h -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/README.textile -------------------------------------------------------------------------------- /iPhoneContacts.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/iPhoneContacts.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iPhoneContacts_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/iPhoneContacts/HEAD/iPhoneContacts_Prefix.pch --------------------------------------------------------------------------------