guardShowView.h 527 B

123456789101112131415161718192021222324
  1. //
  2. // guardShowView.h
  3. // yunbaolive
  4. //
  5. // Created by Boom on 2018/11/12.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol guardShowDelegate <NSObject>
  10. @optional;
  11. - (void)buyOrRenewGuard;
  12. - (void)removeShouhuView;
  13. @end
  14. @interface guardShowView : UIView<UITableViewDelegate,UITableViewDataSource>
  15. @property(nonatomic,weak)id<guardShowDelegate> delegate;
  16. - (instancetype)initWithFrame:(CGRect)frame andUserGuardMsg:(NSDictionary *)dic andLiveUid:(NSString *)uid;
  17. - (void)show;
  18. @end