UGCKitSlideButton.h 567 B

123456789101112131415161718
  1. // Copyright (c) 2019 Tencent. All rights reserved.
  2. #import <UIKit/UIKit.h>
  3. NS_ASSUME_NONNULL_BEGIN
  4. @interface UGCKitSlideButton : UIControl
  5. @property (strong, nonatomic) IBOutletCollection(UIButton) NSArray<UIButton *>* buttons;
  6. @property (assign, nonatomic) IBInspectable CGFloat spacing;
  7. @property (assign, nonatomic) IBInspectable CGSize size;
  8. @property (assign, nonatomic) NSUInteger selectedIndex;
  9. - (instancetype)initWithButtons:(NSArray<UIButton *> *)buttons buttonSize:(CGSize)size spacing:(CGFloat)spacing;
  10. - (void)shrink;
  11. @end
  12. NS_ASSUME_NONNULL_END