Can someone tell me please how I can get the Image fron the picked Person in Swift please ? I use ABPeoplePickerNavigationController..
Asked
Active
Viewed 311 times
1 Answers
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