Hello,
How can I add the framework in X code?
I want to make address book plug ins.
I am importing <AddressBook/AddressBook.h>
I need to implement this things.
int main (int argc, const char
*argv[]) {
NSAutoreleasePool
*pool = [[NSAutoreleasePool alloc] init];
ABAddressBook *book
= [ABAddressBook sharedAddressBook];
[pool release];
return 0;
}
But I am getting error “.obj_class_name_ABAddressBook Referenced
From”.
Can any one tell me what might be problem with?
Thank You..