THScrollChooseView.h 446 B

123456789101112131415161718192021222324252627
  1. //
  2. // THScrollChooseView.h
  3. // THChooseTool
  4. #import <UIKit/UIKit.h>
  5. typedef void(^THScrollChooseViewBlock)(NSInteger selectedValue);
  6. @interface THScrollChooseView : UIView
  7. @property (strong, nonatomic) THScrollChooseViewBlock confirmBlock;
  8. /**
  9. 布局
  10. @param questionArray 问题数组
  11. @return self
  12. */
  13. - (instancetype)initWithQuestionArray:(NSArray *)questionArray withDefaultDesc:(NSString *)defaultDesc;
  14. - (void)showView;
  15. @end