xcode 6:symbol(s) not found for architecture armv7

Building my Ionic+Parse Project in Xcode v 6.2 gives me this build error:

Undefined symbols for architecture armv7:
  "_OBJC_CLASS_$_PFPush", referenced from:
      objc-class-ref in AppDelegate.o
  "_OBJC_CLASS_$_PFInstallation", referenced from:
      objc-class-ref in AppDelegate.o
  "_OBJC_CLASS_$_Parse", referenced from:
      objc-class-ref in AppDelegate.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)

The frameworks that I have added are

enter image description here

And the build settings look like this enter image description here

Any help would be really appreciate

P.S: Trying to run application on an iPad 2

Update The problem is with adding Parse.Framework to existing xCode project. - I tried removing the re adding the Parse.Framework (cleaned and built) from project but then it increases build errors.

Finally after hours of struggle.

  • Clear the /platforms folder
  • run ionic platform add ios
  • Open /platform/ios Xcode Project.
  • You should see build errors (about 8 or 10)
  • Go to Target> Build settings>Other Linker Flags
  • Remove the -ObjC from the list if present.
  • Clean and build you're good to go. enter image description here