1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // QBPopupMenuOverlayView.m
- // QBPopupMenu
- //
- // Created by Tanaka Katsuma on 2013/11/24.
- // Copyright (c) 2013年 Katsuma Tanaka. All rights reserved.
- //
- #import "QBPopupMenuOverlayView.h"
- #import "QBPopupMenu.h"
- @implementation QBPopupMenuOverlayView
- - (instancetype)initWithFrame:(CGRect)frame
- {
- self = [super initWithFrame:frame];
-
- if (self) {
- self.backgroundColor = [UIColor clearColor];
- }
-
- return self;
- }
- - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
- {
- UITouch *touch = [touches anyObject];
- UIView *view = touch.view;
-
- if (view == self) {
- // Close popup menu
- [self.popupMenu dismissAnimated:YES];
- }
- }
- @end
|