UIView+PageRect.h 370 B

12345678910111213141516171819202122
  1. //
  2. // UIView+PageRect.h
  3. // WMZPageController
  4. //
  5. // Created by wmz on 2019/12/16.
  6. // Copyright © 2019 wmz. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface UIView (PageRect)
  11. - (void)page_y:(CGFloat)y;
  12. - (void)page_x:(CGFloat)y;
  13. - (void)page_width:(CGFloat)width;
  14. - (void)page_height:(CGFloat)height;
  15. @end
  16. NS_ASSUME_NONNULL_END