I'm trying to use the ABPerson object. The documentation tells me to include ABPerson.h.
Here is basically my code:
#import "ABPerson.h"
[...]
-(void) updateImageWithContact:(ABPerson)contact;
The problem is that I get an error:
error: ABPerson.h: No such file or directory
I did include Addressbook.framework so I don't know what's going on.
If I remove the #import there is no error, but I can't use the ABPerson class.