XMWallSwitchView.h 511 B

123456789101112131415161718192021222324
  1. //
  2. // XMWallSwitchView.h
  3. // XWorld_General
  4. //
  5. // Created by SaturdayNight on 2018/10/22.
  6. // Copyright © 2018年 xiongmaitech. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface XMWallSwitchView : UIButton
  11. @property (nonatomic,strong) UIButton *btnOne;
  12. @property (nonatomic,strong) UIButton *btnTwo;
  13. @property (nonatomic,strong) UIButton *btnThree;
  14. @property (nonatomic,copy) void (^WallSwitchClickedAction)(NSInteger index,BOOL selected);
  15. @end
  16. NS_ASSUME_NONNULL_END