Jabber Guest iOS SDK
FPTouchView.h
1 //
2 // FPTouchView.h
3 //
4 // Created by Alvise Susmel on 4/16/12.
5 // Copyright (c) 2012 Fifty Pixels Ltd. All rights reserved.
6 //
7 // https://github.com/50pixels/FPPopover
8 
9 #import <UIKit/UIKit.h>
10 
11 typedef void (^FPTouchedOutsideBlock)();
12 typedef void (^FPTouchedInsideBlock)();
13 
14 @interface FPTouchView : UIView
15 {
16  __strong FPTouchedOutsideBlock _outsideBlock;
17  __strong FPTouchedInsideBlock _insideBlock;
18 }
19 
20 -(void)setTouchedOutsideBlock:(FPTouchedOutsideBlock)outsideBlock;
21 
22 -(void)setTouchedInsideBlock:(FPTouchedInsideBlock)insideBlock;
23 
24 @end