0

Right now I am building an app that would like to present an ViewController. I was wondering of there was any control that would display this like a os x sheet on an iPad. If there is no control available, how would I go about achieving such a thing?

Thanks, Virindh Borra

Anoop Vaidya
  • 46,283
  • 15
  • 111
  • 140
virindh
  • 3,775
  • 3
  • 24
  • 49

2 Answers2

0

The closest equivalent interface on iOS is known as a popover. It's not quite the same, though -- make sure to carefully read the UI guidelines associated with it, as a popover view is not appropriate in all situations where a sheet would have been on Mac OS X.

0

OSX sheet are modal window.

If you are really need a modal window in ios, then you need to create a custom view, load it as a modal view through modalViewControllers.

Anoop Vaidya
  • 46,283
  • 15
  • 111
  • 140