| 123456789101112131415161718192021222324 |
- //
- // guardShowView.h
- // yunbaolive
- //
- // Created by Boom on 2018/11/12.
- // Copyright © 2018年 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol guardShowDelegate <NSObject>
- @optional;
- - (void)buyOrRenewGuard;
- - (void)removeShouhuView;
- @end
- @interface guardShowView : UIView<UITableViewDelegate,UITableViewDataSource>
- @property(nonatomic,weak)id<guardShowDelegate> delegate;
- - (instancetype)initWithFrame:(CGRect)frame andUserGuardMsg:(NSDictionary *)dic andLiveUid:(NSString *)uid;
- - (void)show;
- @end
|