2

Can you somehow lock an iPad to Safari and only one webpage? I've found people locking iPad to certain apps but can't find this anywhere.

One app example: Lock-down iPhone/iPod/iPad so it can only run one app

Community
  • 1
  • 1
OZZIE
  • 6,609
  • 7
  • 55
  • 59

1 Answers1

3

From the accepted answer to the question you link to:

It is possible to put an iPad or iPhone into 'Store Demo' mode so that the home button and swipe to home gesture is disabled. If you have seen the iPads in the Apple Store running the smart sign apps then you will know what I mean.

So you could, for example, lock the device to Safari. But then it would be possible to navigate to any webpage.

What you need to do is to write a simple app that has a UIWebView that loads your site, and then put the device in 'Store Demo' mode afterwards. Also, depending on whether your site contains links to the outside world, you may have to implement webView:shouldStartLoadWithRequest:navigationType: from the UIWebViewDelegate protocol so that it refuses to leave your site.

Community
  • 1
  • 1
yuji
  • 16,695
  • 4
  • 63
  • 64
  • 1
    How much simpler do you want it to be? It should take like 20 minutes to write this app. – yuji Apr 03 '12 at 08:36