I **think** this is an Xcode issue, but not sure.
I am learning Core Data and in the process doing the tutorial provided by Apple.
In a nutshell, I am getting a ?link error? as follows.
Undefined symbols:
".objc_class_name_NSManagedObjectModel", referenced from:
literal-pointer@__OBJC@__cls_refs@NSManagedObjectModel in CDCLI.o
".objc_class_name_NSAttributeDescription", referenced from:
literal-pointer@__OBJC@__cls_refs@NSAttributeDescription in CDCLI.o
".objc_class_name_NSEntityDescription", referenced from:
literal-pointer@__OBJC@__cls_refs@NSEntityDescription in CDCLI.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
Now you will have to excuse me if this is not correct, but when I look at the "Link Binary with Libraries" in "Targets" all I see is the link to "Foundation.framework". So, I think the issue is not importing and/or linking to CoreData. But if this is indeed the issue, how to fix it.
Any help would be appreciated.
Thanks in advance.