tbointeractive / TBODeveloperOverlay

A collection of developer tools for debugging iOS Apps
MIT License
5 stars 2 forks source link

When using the TBODeveloperOverlay via use_framworks! there is an error in TBODeveloperOverlayCococaLumberjackLogFormatter.h #12

Open brototyp opened 8 years ago

brototyp commented 8 years ago

In that case it is not possible to do #import <CocoaLumberjack/CocoaLumberjack.h>. A Fix would be to use @import CocoaLumberjack;. But: How is it then if one doesn't use use_frameworks!?

bernhard-eiling commented 8 years ago

I could reproduce the error and fix it with the proposed procedure in a test project. But when removing use_frameworks! from the pod file of the test project again i wasn't able to build the project.

Module 'CocoaLumberjack' in TBODeveloperOverlayCococaLumberjackLogFormatter.h not found.

brototyp commented 8 years ago

Is there any other way? In the end we shouldn't be depended on the way how the pod is embedded.

brototyp commented 8 years ago

I seems to be a general issue: https://github.com/CocoaPods/CocoaPods/issues/4605