3

I'm trying integrate Kal into my existing app. I've followed this tutorial, and I'm still having issues. When I create a new view and import Kal.h, I get an error stating Kal.h is not found. I'm using Xcode 4.2. I've been searching everywhere, and I haven't found an adequate solution.

Thanks

Franklin
  • 1,771
  • 3
  • 17
  • 35
  • Did you check in your target->Build Phase->Compiled Source Library, that file exists? look at my existing answer which is co-related to your question http://stackoverflow.com/questions/9931510/apple-mach-o-linker-errors-20-undefined-symbols-for-architecture-armv7/9931571#9931571 – Praveen-K Mar 30 '12 at 16:32
  • Praveen-K, the file does exist in Compiled Source Library. – Franklin Mar 30 '12 at 16:48
  • Are you setting the header path in your project settings ? – Praveen-K Mar 30 '12 at 16:54
  • Yes, using $(BUILT_PRODUCTS_DIR) – Franklin Mar 30 '12 at 17:00
  • 1
    First of all i will say remove that entry from project and target settings and try and if it does not work otherwise use the correct path. $(PROJECT_DIR) will be your project directory path. I am 100 % sure it will work. let me know if it works. – Praveen-K Mar 30 '12 at 17:05
  • I'm uncertain how that would solve my problem. With that said, I've tried it, and I'm still getting the same error. – Franklin Apr 02 '12 at 13:05
  • That will solve your problem certainly. did you follow the same which i mentioned in my comments. – Praveen-K Apr 02 '12 at 15:39
  • Praveen-K, I don't get what you mean either. Remove entry? Which entry? You mean $(BUILT_PRODUCTS_DIR)? And this entry also exist in the target settings? What? So if you use $(PROJECT_DIR) instead of $(BUILT_PRODUCTS_DIR) this would solve the problem? No it doesn't. – coolcool1994 Jun 16 '14 at 15:10

1 Answers1

2

You can try my blog post here.

At the same time you have to add the .a file (Static Library build) into this project.

muthukumar
  • 651
  • 1
  • 6
  • 19