UIViewController+Presentation.h 470 B

123456789101112131415161718192021
  1. //
  2. // UIViewController+Presentation.h
  3. // HWPanModal
  4. //
  5. // Created by heath wang on 2019/4/29.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import <HWPanModal/HWPanModalPresentable.h>
  9. #import <HWPanModal/HWPanModalPresentationUpdateProtocol.h>
  10. NS_ASSUME_NONNULL_BEGIN
  11. /**
  12. * The presented Controller can use the category to update UIPresentationController container.
  13. */
  14. @interface UIViewController (Presentation) <HWPanModalPresentationUpdateProtocol>
  15. @end
  16. NS_ASSUME_NONNULL_END