VLCVerticalSwipeGestureRecognizer.h 539 B

12345678910111213141516171819202122
  1. //
  2. // VLCVerticalSwipeGestureRecognizer.h
  3. // VLC for iOS
  4. //
  5. // Created by Felix Paul Kühne on 26.05.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. // Refer to the COPYING file of the official project for license.
  9. //
  10. #import <UIKit/UIKit.h>
  11. @protocol VLCVerticalSwipeGestureRecognizer
  12. @required
  13. - (void)verticalSwipePercentage:(CGFloat)percentage inView:(UIView *)view half:(NSUInteger)half;
  14. @end
  15. @interface VLCVerticalSwipeGestureRecognizer : UISwipeGestureRecognizer
  16. @property (nonatomic, retain) id delegate;
  17. @end