I am trying to use EventKit based around the doco & SimpleEKDemo application, however I am getting the following single error.

What does this error mean and what steps would be recommended for troubleshooting (first time I've had such a linking error & I'm a bit lost - I've parsed through my code versus teh example code and I can't see any obvious differences).

Undefined symbols:
  "_OBJC_CLASS_$_EKEventStore", referenced from:
      objc-class-ref-to-EKEventStore in AppointmentListController.o
ld: symbol(s) not found
collect2: ld returned 1 exit status

Note that in the header file from the controller I'm using the event kit code I do have:

#import <EventKit/EventKit.h>
#import <EventKitUI/EventKitUI.h>
link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Check if you have added EventKit and EventKitUI frameworks to link with your target?

link|improve this answer
ummmm....I guess I don't understand what you mean so probably not :) I've just the done the #import statements but I guess this is different. Is this something in project build options or something? – Greg Feb 27 '11 at 10:50
googled and got it sorted - thanks – Greg Feb 27 '11 at 10:54
Nice quick fix! I forgot to add FrameWork after importing a view controller from another project. – Louie May 29 '11 at 4:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.