1

I am using the pixate framework to style my views. It does very well. I am also using kiwi as a test framework. When I include the pixate framework for a test case it just throws the following error:

fatal error: 'Pixate/PXVirtualControl.h' file not found

PXVirtualControl.h is a private header file.

Joe
  • 11
  • 2
  • Is Pixate installed directly to the project, or is it installed via Cocoapods? – pixatebob Jan 20 '14 at 23:08
  • I am using CocoaPods. From cocoapods the PrivateHeaders are also not being added to the search paths. – Bocaxica Jan 22 '14 at 10:51
  • 1
    I just changed the 2.0.1 Pixate podspec to include PrivateHeaders as part of CocoaPods. For future releases, the Pixate team should exclude dependencies to Private headers from the Public ones. – Angel G. Olloqui Jan 22 '14 at 10:56

1 Answers1

2

That header, PXVirtualControl.h, is included in the PrivateHeaders folder of the framework. You may need to add that folder in the header search path of your unit testing project.

pixatebob
  • 63
  • 4
pixatepaul
  • 251
  • 2
  • 5