12

How do i make a uiactionsheet dismiss when you tap outside eg above it? This is for iPhone. Apparently the ipad does this by default (I may be wrong).

Eimantas
  • 48,927
  • 17
  • 132
  • 168
Chris
  • 39,719
  • 45
  • 189
  • 235

11 Answers11

15

Ok got a solution. The following applies to a subclass of a UIActionSheet

// For detecting taps outside of the alert view
-(void)tapOut:(UIGestureRecognizer *)gestureRecognizer {
    CGPoint p = [gestureRecognizer locationInView:self];
    if (p.y < 0) { // They tapped outside
        [self dismissWithClickedButtonIndex:0 animated:YES];
    }
}

-(void) showFromTabBar:(UITabBar *)view {
    [super showFromTabBar:view];

    // Capture taps outside the bounds of this alert view
    UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapOut:)];
    tap.cancelsTouchesInView = NO; // So that legit taps on the table bubble up to the tableview
    [self.superview addGestureRecognizer:tap];
    [tap release];
}

The gist of it is to add a gesture recogniser to the action sheet's superview, and test all taps to see if they are above the action sheet.

Chris
  • 39,719
  • 45
  • 189
  • 235
  • 2
    I am currently attempting this solution, however I am finding that the UIAlertView soaks up all events, so the tapOut: method is never called by the gesture recognizer. Hence, this solution doesn't work at all. – StCredZero Aug 27 '12 at 21:05
  • I am getting the same results as @StCredZero. In 8.1 if you are using a UIAlertController, adding a UIAlertActionStyleCancel it will give you that effect. In previous version, there is no way to add this feature. – Jacob Van Brunt Nov 13 '14 at 17:13
4

it may be useful to you Use:

- (void)dismissWithClickedButtonIndex:(NSInteger)buttonIndex animated:(BOOL)animated

previous so question

Community
  • 1
  • 1
Aravindhan
  • 15,608
  • 10
  • 56
  • 71
  • That's fine for dismissing it, but i'd still need some way of capturing when the 'tapped outside' event occurred, so i could call this function. – Chris May 30 '11 at 04:33
  • http://developer.apple.com/library/ios/#documentation/uikit/reference/UITapGestureRecognizer_Class/Reference/Reference.html – Aravindhan May 30 '11 at 04:44
  • I'm trying with the tap gesture recogniser, but i can't find which view to attach it to. The actionsheet's view? Its superview? The tabbar passed to it in 'showfromtabbar' ? *Its* superview? None of them work... – Chris May 30 '11 at 05:12
  • Got it working. Thanks for the tip about the gesture recogniser. – Chris May 30 '11 at 05:40
3

I think you are looking for this method

- (void)dismissWithClickedButtonIndex:(NSInteger)buttonIndex animated:(BOOL)animated

EDIT

you can use this on your action sheet object and it works just fine but you cannot register event outside that sheet like the grayed out part

may be if you use UITapGestureRecognizer on your view controller than it might do the trick.

UITapGestureRecognizer *recognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(nothing)];
[actionSheet addGestureRecognizer:recognizer];
Robin
  • 10,011
  • 5
  • 49
  • 75
  • Again, this is what i'd call once i've got a handler that is called whenever the user taps outside. But capturing the 'tapped outside' event is my problem here. Thanks – Chris May 30 '11 at 04:41
  • Doesn't work either by adding the GR to the action sheet or the container view. – Sonny Saluja Jul 29 '11 at 05:02
  • Well then you haven't tried it yet, cause in my case it worked. – Robin Jul 29 '11 at 05:10
1

After setting the cancelButtonIndex property of UIActionSheet with a valid value, tapping outside will dismiss the UIActionSheet. I have tried in iOS 9. However, if this cancelButtonIndex is not set of set to a wrong value (e.g. an index beyond the total button count in the UIActionSheet), nothing will happen when tapping outside.

Jiaru
  • 153
  • 4
1

No need of any tap gesture. Simply use UIAlertActionStyleCancel action.

0

This does not answer the question exactly, but here is what I do to close the picker when clicking on one of its items (this prevents from adding additional "done" button or "outside click" stuff):

Implement the viewForRow picker's delegate method in which you create a UILabel and return it:

- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view

On those custom row labels, add a tap action handler:

UITapGestureRecognizer *tapAction = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleClick:)];
[label addGestureRecognizer:tapAction];

In the handleClick callback, dismiss the open sheet (the one that contains the picker view):

[pickerSheet dismissWithClickedButtonIndex:0 animated:TRUE];
Benjamin Piette
  • 3,645
  • 1
  • 27
  • 24
0

Use showFromRect, for example:

UIView *barButtonView = [barButtonItem valueForKey:@"view"];
CGRect buttonRect = barButtonView.frame;

[actionSheet showFromRect:buttonRect inView:self.view animated:YES];
david72
  • 7,151
  • 3
  • 37
  • 59
0

in iOS7 I add dismissWithClickedButtonIndex msg in gestureRecognizerShouldBegin, and it works.

Robert
  • 5,278
  • 43
  • 65
  • 115
Vinci
  • 1
  • 2
0

You can't do that by tapping outside because action sheet covers whole view some transparent black view with buttons in form of sheet in iphones but in ipad this behavior presents by default .

so for touching outside you cant call touch methods. so i don't think so you can do in this way and also when apple provide a cancel button in action sheet then why not you do use that button rather than this.

Ishu
  • 12,797
  • 5
  • 35
  • 51
  • We've got a customised action sheet which has a table presenting many options, covering the normal buttons, which is why i'm trying to do this. – Chris May 30 '11 at 05:06
  • then why not you are trying for touches methods touchesBegain. – Ishu May 30 '11 at 05:14
-1

Use .cancel UIAlertActionStyle as an option.

Basheer
  • 1,207
  • 9
  • 10
-1

Just add an alert with style: .cancel. Rest of the work will be done automatically.

alert.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler: nil))

  • The same solution has alerady been proposed in the answers above. If you want to improve an existing answer by adding a code snippet to it, you can do so by editing it. Avoid posting duplicate answers. – jraufeisen Jul 05 '21 at 17:19