Linking error when building Parse in Xcode 7

前端 未结 2 466
情话喂你
情话喂你 2021-01-20 10:39

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 before in Xcode 6. However this time I am b

2条回答
  •  轮回少年
    2021-01-20 11:06

    There seems to be an issue with Xcode 7 beta where the search path for manually added frameworks is missing.

    To fix the issue add the search path by doing the following:

    1. Select Project
    2. Click on Targets
    3. Click Build Settings
    4. Search for: Framework Search Path
    5. Add the following without the quotes: "$(PROJECT_DIR)" and choose recursive option.

    The project should build now.

提交回复
热议问题