Can I programmatically enable hotspot mode on an iPhone?

I want to develop an application that programmatically creates a personal access point with a predefined name on the iPhone.

Is it possible?

+7
source share
2 answers

You cannot create HotSpot in code by talking through the API, or through the Configuration Profile

Have you looked at GameKit , which does a great job of transparently connecting devices via Bluetooth or WiFi? Don't let the name "Game" fool you - it's a great and easy-to-use library.

+3
source

If you are ready to put the time and work to build it, of course.

However, you can only do this for jailbroken phones, and you will need to bind a private API: s. If you still want to do this, the starting point could be to look at a private API: s is documented here: https://github.com/nst/iOS-Runtime-Headers

+2
source

All Articles