I am using Xcode 7 beta and I am trying to integrate the Parse iOS SDK using Cocoapods.
I already created bridging-header.h , I imported Parse #import <Parse/Parse.h> . I already called Parse in my AppDelegate.swift .
The error occurs when I try to use any class / object associated with Parse. Actually, I just call Parse with: Parse.setApplicationId(ParseAPI.AppID, clientKey: ParseAPI.ClientKey)
I get the following error:
Undefined symbols for architecture x86_64: "_OBJC_CLASS_$_Parse", referenced from: type metadata accessor for ObjectiveC.Parse in AppDelegate.o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation)
I cleaned the project many times even with a complete clean build .
source share