Reputation: 43
I added in podfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'
pod 'Parse'
pod 'ParseUI'
pod 'ParseCrashReporting'
pod 'GoogleMaps'
add FRAMEWORK_SEARCH_PATHS
and OTHER_LDFLAGS - $(inherit)
and compiling project but an error:
ld: framework not found Bolts
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Upvotes: 1
Views: 267
Reputation: 557
Try this,
Go to Framework Search Paths
and check the order.
It should be- 1)Bolts 2)FB 3)Parse.
Upvotes: 0