Classification_Alertview.h 501 B

123456789101112131415161718
  1. //
  2. // Classification_Alertview.h
  3. // iphoneLive
  4. //
  5. // Created by bugu on 2018/12/6.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol ClassificationDelegate2 <NSObject>
  10. - (void)didSelectWithAlert:(id)obj;
  11. @end
  12. @interface Classification_Alertview : UIView
  13. @property (nonatomic,strong)UIScrollView *scrollview;
  14. @property (nonatomic,weak)id<ClassificationDelegate2>delegate;
  15. - (void)setClassWithAry:(NSArray *)ary;
  16. - (void)selectWithIndex:(NSInteger )index;
  17. @end