This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <Cocoa/Cocoa.h> | |
@interface GetPathsOperation : NSOperation | |
- (id)initWithRootURL:(NSURL *)url queue:(NSOperationQueue *)qq scanCount:(NSInteger)scanCount; | |
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <Foundation/Foundation.h> | |
#import <UIKit/UIGestureRecognizerSubclass.h> | |
typedef NS_ENUM(NSUInteger, SDirectionPanGestureRecognizerDirection) { | |
SDirectionPanGestureRecognizerDirectionHorizontal, | |
SDirectionPanGestureRecognizerDirectionVertical | |
}; | |
// Subclass of UIPanGestureRecognizer that only enable one direction pan gesture. | |
// The intended direction should be set by the property direction. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <Foundation/Foundation.h> | |
#import <UIKit/UIGestureRecognizerSubclass.h> | |
typedef enum { | |
DirectionPangestureRecognizerVertical, | |
DirectionPanGestureRecognizerHorizontal | |
} DirectionPangestureRecognizerDirection; | |
@interface DirectionPanGestureRecognizer : UIPanGestureRecognizer { | |
BOOL _drag; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// STabControl.h | |
// Xcode Reader | |
// | |
// Created by Song Hui 2013-4-15 | |
// Copyright(C)Song Hui. All rights reserved. | |
#import <UIKit/UIKit.h> | |
@class STabControl; |
NewerOlder