Jordi
Jordi

Reputation: 160

Is it possible to programmatically enable hotspot mode in iPhone?

I want to develop an application that programmatically creates a Personal Hotspot with a predefined name on an iPhone.

Is it possible?

Upvotes: 9

Views: 6019

Answers (2)

Niels Castle
Niels Castle

Reputation: 8069

You can't create a HotSpot in code talking via an API or via a Configuration Profile

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

Upvotes: 4

uvesten
uvesten

Reputation: 3355

If you're willing to put the time and work in to build it, sure.

However, you can only do it for jailbroken phones, and you would need to interface the private API:s. If you still want to do it, a starting point could be to go through the private API:s documented here: https://github.com/nst/iOS-Runtime-Headers

Upvotes: 2

Related Questions