0

Can someone tell me please how I can get the Image fron the picked Person in Swift please ? I use ABPeoplePickerNavigationController..

BilalReffas
  • 8,132
  • 4
  • 50
  • 71

1 Answers1

1
if ABPersonHasImageData(person ) {
    let profilePicture = UIImage(data: ABPersonCopyImageDataWithFormat(person, kABPersonImageFormatOriginalSize).takeRetainedValue())!
    let profilePictureThumbnail = UIImage(data: ABPersonCopyImageDataWithFormat(person, kABPersonImageFormatThumbnail).takeRetainedValue())!
    println("\(profilePicture)")
    println("\(profilePictureThumbnail)")
}
Leo Dabus
  • 229,809
  • 59
  • 489
  • 571