口袋优选

WLSubView.h 553B

123456789101112131415161718192021222324252627
  1. //
  2. // WLSubView.h
  3. // WLScrollView
  4. //
  5. // Created by 张子豪 on 2017/11/16.
  6. // Copyright © 2017年 张子豪. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol WLSubViewDelegate<NSObject>
  10. - (void)didSelectedRespond;
  11. @end
  12. @interface WLSubView : UIView
  13. @property (nonatomic,weak)id<WLSubViewDelegate> delegate;
  14. @property (nonatomic,strong)NSString *identifier;
  15. @property (nonatomic,assign)BOOL isUser; //是否在使用
  16. - (instancetype)initWithFrame:(CGRect)frame Identifier:(NSString *)indentifier;
  17. @end