DMBaseTransition.h 402 B

12345678910111213141516
  1. //
  2. // DMBaseTransition.h
  3. // DMCustomTransition
  4. //
  5. // Created by Thomas Ricouard on 26/11/13.
  6. // Copyright (c) 2013 Thomas Ricouard. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface DMBaseTransition : NSObject
  10. <UIViewControllerTransitioningDelegate, UIViewControllerAnimatedTransitioning>
  11. @property (nonatomic, readwrite, assign, getter = isPresenting) BOOL presenting;
  12. @end