0

I'm using PODS and modify them as well. I came to encounter a situation where I need a POD file say PODTest to import file TargetTest.h which is main target header file. I checked if target files can import header files but not vice versa. I could write below line with no compilation error in POD file.

@class TargetTest;

But properties created for TargetTest cannot be used in POD file PODTest.h or PODTest.m

AM i doing something wrong?

Hiren Prajapati
  • 717
  • 3
  • 10
  • 25

1 Answers1

0

Go to :

project->build settings->User Header Search Paths and add ${SRCROOT} choose recursive.

Hope this will help you!!

Anand Kore
  • 1,300
  • 1
  • 15
  • 33