There is such a problem, I wrote my static lib (Swift + native), so what should I do in order to use it in the app
I have added the lib to the app + I did all the preparations (linkage in the settings, etc) and eventually, I can use my lib in the app and everything is working, BUT the problem is that the app doesn't see API methods, what I mean is - for example, there is a method for creating object MyLib.createObj()
on the one hand this method works, but on the other hand there is a hint about this method when I type MyLib.
I expect (as usual) that after I put a .
it will show me all possible methods, right? Or for example, if I type MyLib.cre
, so I expect that it autocompletes it like MyLib.createObj()
, but in the case with my lib, I need to write every letter blindly, without autocompletion or a list of possible methods.
Feels like the app doesn't see the API file (where the list of all lib's methods).
If I missed something let me know.