XLZoomHeader.h 515 B

123456789101112131415161718192021222324252627
  1. //
  2. // XLZoomHeader.h
  3. // XLZoomHeaderDemo
  4. //
  5. // Created by MengXianLiang on 2018/8/3.
  6. // Copyright © 2018年 mxl. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface XLZoomHeader : UIView
  10. ///background image insets
  11. @property (nonatomic, assign) UIEdgeInsets backgroundImageInsets;
  12. ///background image
  13. @property (nonatomic, strong) UIImage *backgroundImage;
  14. @end
  15. @interface UIScrollView (XLHeaderExtension)
  16. //scrollview's extension
  17. @property (nonatomic, strong) XLZoomHeader *xl_zoomHeader;
  18. @end