This file contains 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
/* | |
RLRAppearanceForwarding.h | |
Copyright ©2014 Kazki Miura. All rights reserved. | |
*/ | |
#import <UIKit/UIKit.h> | |
@protocol RLRAppearanceForwarding <NSObject> |
This file contains 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
/* | |
RLRTableViewCellSelectionDuringInteractivePopAndPush.h | |
Copyright ©2014 Kazki Miura. All rights reserved. | |
*/ | |
#import <UIKit/UIKit.h> | |
@protocol RLRTableViewCellSelectionDuringInteractivePopAndPush |
This file contains 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> | |
// RLTraverseObjectGraphBlock | |
typedef void (^RLTraverseObjectGraphBlock)(id obj, NSUInteger depth, NSUInteger idx, id parent, BOOL *stop); // If you want to stop traversing completely, set YES to *stop. | |
// RLChildrenGetter | |
typedef id (^RLChildrenGetter)(id obj, NSUInteger depth, NSUInteger idx, id parent); // Return object which responds to enumerateObjetsUsingBlock: method. If you don't want to dive deeper, return nil. | |
@interface NSObject (RLTraverse) |