22 lines
423 B
Objective-C
22 lines
423 B
Objective-C
//
|
|
// XuanduoSelectHeader.h
|
|
// Ifish
|
|
//
|
|
// Created by Alex on 2019/4/28.
|
|
// Copyright © 2019 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XuanduoSelectHeader : UIView
|
|
|
|
+ (instancetype)shareHeaderView;
|
|
@property (weak, nonatomic) IBOutlet UIButton *controlBtn;
|
|
- (void)configWithImageName:(NSString *)name labelName:(NSString *)labelName;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|