SortButton.h 378 B

12345678910111213141516171819
  1. //
  2. // SortButton.h
  3. // iSales-NPD
  4. //
  5. // Created by Jack on 16/9/6.
  6. // Copyright © 2016年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface SortButton : UIControl
  10. @property (nonatomic,strong) UILabel *titleLabel;
  11. @property (nonatomic,strong) UIImageView *imageView;
  12. + (SortButton*)sortButtonWithHeight:(CGFloat)height;
  13. @end