12345678910111213141516171819202122 |
- //
- // VLCVerticalSwipeGestureRecognizer.h
- // VLC for iOS
- //
- // Created by Felix Paul Kühne on 26.05.13.
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- // Refer to the COPYING file of the official project for license.
- //
- #import <UIKit/UIKit.h>
- @protocol VLCVerticalSwipeGestureRecognizer
- @required
- - (void)verticalSwipePercentage:(CGFloat)percentage inView:(UIView *)view half:(NSUInteger)half;
- @end
- @interface VLCVerticalSwipeGestureRecognizer : UISwipeGestureRecognizer
- @property (nonatomic, retain) id delegate;
- @end
|