Hi everyone,
I have to build a framework that has a staticLib as dependency.
In the same time I want to use some classes from staticLib via framework's public api and it isn't accessible even if I import framework - I tested with otool and nm tools and the symbols seems to be in framework but inaccessible.
How to make public classes from staticLib to be accessible from framework api ?
Any hint or advice would be welcome, thanks in advance.
Post
Replies
Boosts
Views
Activity
Hi everyone,
I have to encapsulate some frameworks in one for distributing purpose.
So, let suppose that we have the following frameworks Framework1, Framework2, ..., FrameworkN, and we have to distribute all in one - FrameworkAll, that is/contains a common wrapper over all those frameworks, wrapper that should be the FrameworkAll public api .
What is the recommended & correct way to do this?
How about nested frameworks in app store review?
Should I consider to build Frameworks$[1..n] as a statics libraries?
Any hint or advice would be welcome,
thanks an advance.
Hi all,
on iOS, I need to create a persistent https connection with pipelining or only persistent also could be enough.
I've tried URLSession with uploadTask but without success. Any advice / direction hint would be well come, thanks in advance.
Hi all,
I'm exploring migration from a VPN split tunnel solution with PacketTunnel for private DNS to the new DNSSettings capability.
Q: Using DNSSettings, is possible to access/alter dns traffic/packets ?, if yes, how ?
Context: client (requests) -> 1 https connection -> server (responses)
Each request has a payload (Data) and the same for responses - so there is not a json request body.
I have to create and manage a https connection , this connection must be re-useable, I mean between client-requests and server-responses should use the same connection.
It could be achieved with URLSession ?, if yes, how?, else what would be the alternatives?.
Thanks in advance.
Hi all,
For iOS I have implemented a NetworkExtension - PacketTunnel solution that I'm using to redirect DNS traffic to a custom DNS server...
Q: there is a way to make the traffic from the host app to bypass his own tunnel?
Thanks.