Jonathan Diaz

Results 4 comments of Jonathan Diaz

It worked for me in the framework doing this: _I think the secret is use [self class]_ ``` [[[self class] frameworkBundle] pathForResource:@"file" ofType:@"cer"]; ``` ``` + (NSBundle *)frameworkBundle { static...

Based on my experience: You can, but you can not ship static Libs inside your static lib. So, you has to remove the reference to the libPod.a to be able...

I did something that sounds like that, this was my setup: Project A, main Project with cocoa pods. (demo app for my framework) Project B, Framework using cocoa pods. (that...

I had the same issue, in my case the problem was that I was trying to the get the .a but I didn't actually add classes to the project. Once...