I have a custom built WebKit.framework and WebCore.framework (a forked version of Apple's Webkit and WebCore). WebKit has a dependency on WebCore. WebCore is currently 30 MB which is too big.
I know I am not using all of WebCore, so I was thinking that if I could statically link WebCore into WebKit to strip all the unused code out of WebCore to shrink WebCore.
So can I statically link a framework into another framework? WebCore is not a static lib currently.
Is this possible? and how?
Thanks in Advance