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