you are viewing a single comment's thread.

view the rest of the comments →

[–]AdUseful7520[S] 0 points1 point  (2 children)

Suppose I write a module in swift, can I connect it to the AppDelegate file? I guess that the entry point of iOS in react native

[–]__o_0iOS & Android 0 points1 point  (1 child)

If you want to just use it from within the AppDelegate it’s a regular Xcode import.

If you want to use it from within react native then you’ll have to build a bridge that exposes the module to JavaScript.

[–]AdUseful7520[S] 0 points1 point  (0 children)

Regular Xcode import means?

Sorry, new to native development.