VLCHorizontalSwipeGestureRecognizer.h 456 B

123456789101112131415161718192021
  1. //
  2. // VLCHorizontalSwipeGestureRecognizer.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. #import <UIKit/UIKit.h>
  9. @protocol VLCHorizontalSwipeGestureRecognizer
  10. @required
  11. - (void)horizontalSwipePercentage:(CGFloat)percentage inView:(UIView *)view;
  12. @end
  13. @interface VLCHorizontalSwipeGestureRecognizer : UISwipeGestureRecognizer
  14. @property (nonatomic, retain) id delegate;
  15. @end