-2

I'm following this toturial to add parse to my ios project.

I came till this step:

step

I don't understand what they saying about changing the path I went to "Build Settings" and inside "Runpath Search Paths" I see: $(inherited) @executable_path/Frameworks, what should I cheange?

change

Here my app location:

chatlocation

Plz shre with me what you think I should write in this path.

Enea Dume
  • 3,014
  • 3
  • 21
  • 36
Kernel
  • 31
  • 1
  • 7
  • Did you install Parse with the CocoaPods package manager, as described in the tutorial? – dr_barto Aug 31 '18 at 09:29
  • Yes, I made all steps, until the point of the screenshot @dr_barto – Kernel Aug 31 '18 at 09:31
  • Usually when you use CocoaPods, there are no additional manual steps required. Just make sure not to open the project file (`.xcodeproj`) but the workspace file generated by CocoaPods (`.xcworkspace`), then you should be able to import Parse in your own code. – dr_barto Aug 31 '18 at 09:36

1 Answers1

2

Please read the Be careful advice carefully. It talks about Search Paths > Framework Search Paths

enter image description here

not Linking > Runpath Search Paths

There add the two paths

enter image description here

Of course it assumes that the Parse framework is already installed.

vadian
  • 274,689
  • 30
  • 353
  • 361