sree
sree

Reputation: 51

Can I disable internet access permission for my ios application?

We have developed a standalone IOS application and I need to disable the internet access permission for the application permanently.

Is there a way I can disable the internet access permission like the way I can do with Android apps?

Upvotes: 3

Views: 7117

Answers (1)

Paulw11
Paulw11

Reputation: 114875

There is no Internet access permission for apps in iOS - applications are always allowed to use network connectivity if it is available. As commenters have said, this shouldn't be a security issue if you have written then app yourself, because you know what the app does and if you don't want it to access the Internet, then don't write code to access the Internet.

You need to ask your security review for clarification. If your app includes a UIWebView it may be that the web view allows browsing to arbitrary web sites - in which case you need to ensure that your delegate method for the web view blocks attempts to load unauthorised URLs

Upvotes: 1

Related Questions