CustomPresentationController.h 389 B

12345678910111213
  1. /*
  2. Copyright (C) 2016 Apple Inc. All Rights Reserved.
  3. See LICENSE.txt for this sample’s licensing information
  4. Abstract:
  5. A custom presentation controller which slides the presenting view controller
  6. upwards to reveal the presented view controller.
  7. */
  8. @import UIKit;
  9. @interface CustomPresentationController : UIPresentationController <UIViewControllerTransitioningDelegate>
  10. @end