I'm using Xcode 7 beta, and I have been trying to integrate Parse iOS SDK using Cocoapods.
I already created the bridging-header.h
, I alreade imported Parse #import <Parse/Parse.h>
. I already called Parse in my AppDelegate.swift
.
The error happends when I try to use any class/object related to Parse. Actually, I'm just calling Parse with: Parse.setApplicationId(ParseAPI.AppID, clientKey: ParseAPI.ClientKey)
I'm getting 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 have cleaned the project many times even a complete clean build.