views:

18

answers:

1

Hello all,

So I suspect this to be a project problem as opposed to a code problem. I am still relatively new to xcode. I am trying to access the ABAddressBook libraries and have included them in the project alright.

![alt text][1][1]: http://i.imgur.com/lBaW0.png

Now when I try to say import "ABAddressBook.h", it doesn't know what I am talking about. Is there anything else I need to do to get that set up? Thanks!

+1  A: 

Try

#import <AddressBook/AddressBook.h>
#import <AddressBookUI/AddressBookUI.h>
Eric