财神随手记账

HPSlideSegmentControllerView.h 671B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // HPSlideSegmentView.h
  3. // HPSlideSegmentView
  4. //
  5. // Created by 何鹏 on 17/6/11.
  6. // Copyright © 2017年 何鹏. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HPSlideSegmentBackgroundView.h"
  10. @interface HPSlideSegmentControllerView : UIViewController
  11. /**
  12. 头部的UIView
  13. */
  14. @property(nonatomic,strong) UIView *headeView;
  15. /**
  16. 头部的高度 如果不设置默认为 headerView的的高度
  17. */
  18. @property(nonatomic,assign) CGFloat headeViewHeight;
  19. /**
  20. 距离底部的高
  21. */
  22. @property(nonatomic,assign) CGFloat bottomSpaceHeight;
  23. /**
  24. 左右滑视图
  25. */
  26. @property(nonatomic,strong) HPSlideSegmentBackgroundView *slideBackgroungView;
  27. @end