WNSegmentItem.h 498 B

1234567891011121314151617181920212223
  1. //
  2. // WNSegmentItem.h
  3. #import <UIKit/UIKit.h>
  4. NS_ASSUME_NONNULL_BEGIN
  5. typedef void (^YCSegmentTopViewUpdate)(UIView *topView);
  6. @interface WNSegmentItem : UIView
  7. @property (nonatomic, weak) UILabel * _Nullable label;
  8. @property (nonatomic, weak) UIImageView * _Nullable imageView;
  9. @property (nonatomic, weak) UIView *view;
  10. - (instancetype)initWithView:(UIView *)view;
  11. - (void)showVerticalDivider;
  12. - (void)hideVerticalDivider;
  13. - (void)addTipView:(UIView *)tipView;
  14. @end
  15. NS_ASSUME_NONNULL_END