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