Including QuickDialog into Xcode 4.2 Project

♀尐吖头ヾ 提交于 2019-12-04 15:12:45

Did you not do exactly these steps too, from the documentation:

Locate the “User Header Search Paths” setting, and set the Release value to “${PROJECT_DIR}/QuickDialog” (including quotes!) and check the “Recursive” check box.

The Debug value should already be set, but if it’s not, change that as well.

Also locate the “Always Search User Paths” value and set it to YES. Finally, find the “Other Linker Flags” option, and add the value “-ObjC” (no quotes).

These instructions do work.

So the solution to this problems are, as posted in the comments, the quotes on “${PROJECT_DIR}/QuickDialog” as you can see there two different quotes.

The solution is to NOT copy it from the documentary, instead just type it yourself and your are fine.

It should look like this: "${PROJECT_DIR}/QuickDialog"

Thats the trick.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!