Используйте UIActionSheet showFromRect
или UIActionSheet showFromBarButtonItem:
метод.
UIActionSheetDelegate
методы -
- (void)showFromBarButtonItem:(UIBarButtonItem *)item animated:(BOOL)animated;
- (void)showFromRect:(CGRect)rect inView:(UIView *)view animated:(BOOL)animated;
пример:
[actionSheet showFromRect:self.btnShare.frame inView:self.view animated:YES];
Если вы используете приложение для iPhone, используйте UIActionSheet showInView
метод -
- (void)showInView:(UIView *)view;
пример -
[actionSheet showInView:self.view.window];