I was wondering how to show a UIActionSheet from the bottom of the screen. I have tried using the showInView:
method with MainView
as the view to show it in but I get the MainView Undeclared
error.
You need to reference the controllers view:
[actionSheet showInView:self.viewController.view]