FLEXGlobalsTableViewControllerEntry.h 840 B

1234567891011121314151617181920212223
  1. //
  2. // FLEXGlobalsTableViewControllerEntry.h
  3. // UICatalog
  4. //
  5. // Created by Javier Soto on 7/26/14.
  6. // Copyright (c) 2014 f. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. typedef NSString *(^FLEXGlobalsTableViewControllerEntryNameFuture)(void);
  11. typedef UIViewController *(^FLEXGlobalsTableViewControllerViewControllerFuture)(void);
  12. @interface FLEXGlobalsTableViewControllerEntry : NSObject
  13. @property (nonatomic, readonly, copy) FLEXGlobalsTableViewControllerEntryNameFuture entryNameFuture;
  14. @property (nonatomic, readonly, copy) FLEXGlobalsTableViewControllerViewControllerFuture viewControllerFuture;
  15. + (instancetype)entryWithNameFuture:(FLEXGlobalsTableViewControllerEntryNameFuture)nameFuture viewControllerFuture:(FLEXGlobalsTableViewControllerViewControllerFuture)viewControllerFuture;
  16. @end