jverkoey / iOS-Framework

How to create, develop, and distribute iOS Static Frameworks quickly and efficiently
2.61k stars 281 forks source link

folders within framework #87

Open mrtristan opened 10 years ago

mrtristan commented 10 years ago

are you guys familiar with how you could have inner folders within a framework? i have a highly compartmentalized framework that is fully functional (thanks for the write up!) and i use it in a number of apps... the framework is broken up in to a number of sections for different types of usages/tasks.

I know some people would say that i should spin it off in to multiple frameworks but i'd rather not for a number of internal reasons.

current usage:

#import <FrameworkName/HeaderFileName.h>

goal usage:

#import <FrameworkName/FolderName/HeaderFileName.h>

i know an issue perhaps isn't the greatest spot for this question, and that it's more of a StackOverflow thing, but i figured it would be an awesome thing to touch on in the writeup if it's doable.

if someone could point me in the right direction in doing this i'd be happy to submit a pull request...

:-)

mrtristan commented 10 years ago

i noticed your latest commit closed this issue but i dont see it addressed. is doing this possible?

jverkoey commented 10 years ago

Overzealous closing on my part.

This should be doable with a custom script that created the necessary subfolders in the framework and moves headers accordingly. No way to configure this in Xcode sadly.