HWPanModalPresentationController.h 416 B

123456789101112131415161718192021222324
  1. //
  2. // HWPanModalPresentationController.h
  3. // HWPanModal
  4. //
  5. // Created by heath wang on 2019/4/26.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "HWPanModalPresentable.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface HWPanModalPresentationController : UIPresentationController
  11. - (void)setNeedsLayoutUpdate;
  12. - (void)transitionToState:(PresentationState)state;
  13. - (void)setContentOffset:(CGPoint)offset;
  14. @end
  15. NS_ASSUME_NONNULL_END