whenever i add this line of code ABPersonViewController *personController = [[ABPersonViewController alloc] init];
im getting this error message ".objc_class_name_ABPersonViewController", referenced from:
whenever i add this line of code ABPersonViewController *personController = [[ABPersonViewController alloc] init];
im getting this error message ".objc_class_name_ABPersonViewController", referenced from:
This is an error generated by the linker when it can't find a definition for the symbol .objc_class_name_ABPersonViewController
. This symbol is for the ABPersonViewController
defined in AdressBook.framework. So, you need to link your application with AddressBook.framework. To do so, select the application target in the Targets group of the Groups & Files pane in Xcode. Select Get Info from the target's context menu. In the "General" tab of the info panel, add AddressBook.framework to the "Linked Libraries" list.
Hey Thanks dude barry and Eimantas i included the AddressBookFramework it worked