UGCKitSlideOptionControl.h 427 B

12345678910111213
  1. // Copyright (c) 2019 Tencent. All rights reserved.
  2. #import <UIKit/UIKit.h>
  3. #import "UGCKitTheme.h"
  4. NS_ASSUME_NONNULL_BEGIN
  5. @interface UGCKitSlideOptionControl : UIControl
  6. - (instancetype)initWithFrame:(CGRect)frame theme:(UGCKitTheme*)theme options:(NSArray<NSString *> *)options;
  7. @property (nonatomic, assign) NSUInteger selectedIndex;
  8. @property (nonatomic, strong) NSIndexSet *disabledIndexes;
  9. @end
  10. NS_ASSUME_NONNULL_END