SWIFT – Link error when building Parse in XCode 7

I am trying to add the Parse.com SDK to my Xcode 7 project. I have followed the getting started guide and I have managed to do it in Xcode 6 before.
But this time I try to build this error message:

ld: framework not found Bolts
clang: error: linker command failed with exit code 1 (use -v to see invocation)

Thank you

I suggest you Use CocoaPods to integrate Parse.

Cocoapods manages library dependencies in a better way.

The following is an example of PodFile:

< pre>source’https://github.com/CocoaPods/Specs.git’

platform :ios, ‘7.0’

inhibit_all_warnings!

target’**YourProjectName**’ do

pod’Parse’,’~> 1.7.1′

pod’AFNetworking’, ‘2.2.3’

end

I am trying to add the Parse.com SDK to my Xcode 7 project. I have followed the getting started guide and I have already Managed to complete it in Xcode 6.
But this time I tried to build this error message:

ld: framework not found Bolts
clang: error: linker command failed with exit code 1 (use -v to see invocation)

Thank you

I suggest you use CocoaPods integrates Parse.

< /p>

Cocoapods manages library dependencies in a better way.

The following is a PodFile example:

source'https://github .com/CocoaPods/Specs.git'

platform :ios, '7.0'

inhibit_all_warnings!

target'**YourProjectName**' do

pod'Parse','~> 1.7.1'

pod'AFNetworking', '2.2.3'

end

Leave a Comment

Your email address will not be published.