// // BogoInviteDetailTopView.h // UniversalApp // // Created by Mac on 2021/6/10. // Copyright © 2021 voidcat. All rights reserved. // #import @class BogoInviteDetailTopView; NS_ASSUME_NONNULL_BEGIN @protocol BogoInviteDetailTopViewDelegate - (void)topView:(BogoInviteDetailTopView *)topView didClickLogBtn:(UIButton *)sender; - (void)topView:(BogoInviteDetailTopView *)topView didClickWithDrawBtn:(UIButton *)sender; @end @interface BogoInviteDetailTopView : UIView @property(nonatomic, weak) iddelegate; @property (weak, nonatomic) IBOutlet QMUIButton *logBtn; @property (weak, nonatomic) IBOutlet UIButton *withDrawBtn; @end NS_ASSUME_NONNULL_END