1

I want to make my app's login page native, but after user login they would be redirect to the webview. basically the app is webview except the login page. Is there anyway to pass the login sessino between native app and webview?

PS: xcode ios

thanks

Lorenzo
  • 3,293
  • 4
  • 29
  • 56
pingping
  • 37
  • 1
  • 8

1 Answers1

1

I am using the below way to pass details in native and webview html page.

  1. Write detail in file.
  2. It can be directly accessed in native using file concept.
  3. For webview you need to write plugin to access native functionalities like cordova plugins

OR

Javascript call How to invoke Objective C method from Javascript and send back data to Javascript in iOS?

Community
  • 1
  • 1
Gobi M
  • 3,243
  • 5
  • 32
  • 47