Post

Replies

Boosts

Views

Activity

Inherit&expose public api from static lib dependency.
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.
1
0
528
Feb ’22
iOS, embedding and distributing frameworks.
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.
1
0
487
Dec ’21
URLSession - persistent connection.
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.
0
0
164
Sep ’20