JXTopSiftJobView.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // JXTopSiftJobView.h
  3. // shiku_im
  4. //
  5. // Created by MacZ on 16/5/19.
  6. // Copyright (c) 2016年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface JXTopSiftJobView : UIView{
  10. NSArray *_paraDataArray;
  11. UIView *_bottomSlideLine;
  12. UIView *_moreParaView;
  13. NSInteger _paraSelIndex;
  14. }
  15. /**
  16. 默认选项,要在dataArray前赋值
  17. */
  18. @property (nonatomic, assign) NSUInteger preferred;
  19. @property (nonatomic, strong) NSArray *dataArray;
  20. @property (nonatomic,weak) id delegate;
  21. @property (nonatomic, assign) BOOL isShowMoreParaBtn;
  22. //非选中状态文字颜色,默认:[UIColor lightGrayColor]
  23. @property (nonatomic, strong) UIColor *titleNormalColor;
  24. //选中状态文字颜色,默认:[UIColor grayColor]
  25. @property (nonatomic, strong) UIColor *titleSelectedColor;
  26. // YES:显示下划线 NO:不显示
  27. @property (nonatomic, assign) BOOL isShowBottomLine;
  28. - (void)showMoreParaView:(BOOL)show;
  29. - (void)moveBottomSlideLine:(CGFloat)offsetX; //移动顶部下划线
  30. - (void)resetItemBtnWith:(CGFloat)offsetX; //scrollView滑动结束,改变顶部item按钮选中状态
  31. - (void)resetSelParaBtnTransform; //参数按钮图片旋转角度归零
  32. - (void)resetWithIndex:(NSInteger)index itemId:(int)itemId itemValue:(NSString *)value; //选中经验、公司规模
  33. - (void)resetWithIndex:(NSInteger)index min:(NSInteger)min max:(NSInteger)max; //选中薪水
  34. - (void)resetAllParaBtn;
  35. - (void)resetBottomLineIndex:(NSUInteger)index;
  36. @end