如何使用 Swift 在 iOS 应用程序中创建热点网络
How to create a hotspot network in iOS app using Swift
我想使用 swift 在 iOS 应用程序中创建热点网络。也请建议 apple 批准的 API。谢谢!
NEHotspotHelper is an official API to do exactly this kind of stuff. Though the API is not an 'Open to All' kind. It needs the entitlement 'com.apple.developer.networking.HotspotHelper' to be included in your app. To use this entitlement you need to ask for a permission from Apple to use this class with your app's bundle identifier with a clear reason for why you need it with some other details of your app. Use this link申请权利。一旦 apple 向您发送批准邮件,您就可以开始了!
我想使用 swift 在 iOS 应用程序中创建热点网络。也请建议 apple 批准的 API。谢谢!
NEHotspotHelper is an official API to do exactly this kind of stuff. Though the API is not an 'Open to All' kind. It needs the entitlement 'com.apple.developer.networking.HotspotHelper' to be included in your app. To use this entitlement you need to ask for a permission from Apple to use this class with your app's bundle identifier with a clear reason for why you need it with some other details of your app. Use this link申请权利。一旦 apple 向您发送批准邮件,您就可以开始了!