Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Koze/4f01a29e21e10fed2483 to your computer and use it in GitHub Desktop.
Save Koze/4f01a29e21e10fed2483 to your computer and use it in GitHub Desktop.
UIViewController's dismiss method with IBAction
#import <UIKit/UIKit.h>
@interface UIViewController (UIViewControllerPresentation)
- (IBAction)dismiss:(id)sender;
@end
#import "UIViewController+UIViewControllerPresentation.h"
@implementation UIViewController (UIViewControllerPresentation)
- (IBAction)dismiss:(id)sender
{
[self dismissViewControllerAnimated:YES completion:nil];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment